Individual Place Data
data class IndividualPlaceData(val id: String, val countryIso: String, val category: String, val nameRecords: List<IndividualPlaceName>, val location: GeoCoordinates, val entryLocation: GeoCoordinates? = null) : Parcelable
Class representing an individual place.
Constructors
Link copied to clipboard
constructor(id: String, countryIso: String, category: String, nameRecords: List<IndividualPlaceName>, location: GeoCoordinates, entryLocation: GeoCoordinates? = null)
Properties
Link copied to clipboard
ISO 3166-2 code of the map, in which this place is located.
Link copied to clipboard
(Optional) Entry location of this place.
Link copied to clipboard
Location of the place. Determines where pin on map will be placed.
Link copied to clipboard
List of IndividualPlaceName objects, which represent different language variants of the place title and subtitle.