PickedPlace constructor

PickedPlace(
  1. String name,
  2. GeoCoordinates coordinates,
  3. String placeCategoryId
)

Creates a new instance.

  • name The name of the POI localized in the currently selected map language.
  • coordinates The geographic coordinates of the POI.
  • placeCategoryId The place category ID of the POI. This is the same String value as PlaceCategory.id that can be obtained from the SearchEngine and the OfflineSearchEngine. Note that not all editions include the OfflineSearchEngine.

Implementation

PickedPlace(this.name, this.coordinates, this.placeCategoryId);