selectPoiCategory method

  1. @Deprecated("Use instead MapViewController.search()")
void selectPoiCategory(
  1. String identifier
)

Selects the given POI category in the map.

This method is deprecated. You can instead use search to filter POIs by category.

Implementation

@Deprecated("Use instead MapViewController.search()")
void selectPoiCategory(String identifier) async {
  _sendMessage(
      WV_MESSAGE_CARTOGRAPHY_SELECT_POI_CATEGORY, {"identifier": identifier});
}