selectMapFeature abstract method
Selects a map feature by its feature ID.
featureId The feature ID from the mapFeaturePickResult PickListener.
Returns true if the operation is successful, false otherwise.
Example:
// Select map feature by ID
String featureId = "room_101";
bool selected = _locationWindow!.selectMapFeature(featureId);
print("Selected map feature $featureId: $selected");
Implementation
bool selectMapFeature(String featureId);