LandmarkStoreType
Objective-C
enum LandmarkStoreType : NSInteger {}
Swift
enum LandmarkStoreType : Int, @unchecked Sendable
Constants indicating the landmark stores types.
-
No landmark store type.
Declaration
Objective-C
LandmarkStoreTypeNone = 0
Swift
case none = 0
-
Plain landmark store.
Declaration
Objective-C
LandmarkStoreTypeDefault
Swift
case `default` = 1
-
Map address database ( not listed as landmark store ). This type is returned by a cursor selection in a MapView or by an address search result. Can be added to a landmark store collection.
Declaration
Objective-C
LandmarkStoreTypeMapAddress
Swift
case mapAddress = 2
-
Map POIs landmark store.
Declaration
Objective-C
LandmarkStoreTypeMapPoi
Swift
case mapPoi = 3
-
Map cities database ( not listed as landmark store ). This type is returned by a cursor selection in a MapView or by a city search result. Can be added to a landmark store collection.
Declaration
Objective-C
LandmarkStoreTypeMapCity
Swift
case mapCity = 4
-
Map highway exits ( not listed as landmark store ). This type is returned by a cursor selection in a MapView or by a country search result. Can be added to a landmark store collection.
Declaration
Objective-C
LandmarkStoreTypeMapHighwayExit
Swift
case mapHighwayExit = 5
-
Map countries database ( not listed as landmark store ). This type is returned by a cursor selection in a MapView or by a country search result. Can be added to a landmark store collection.
Declaration
Objective-C
LandmarkStoreTypeMapCountry
Swift
case mapCountry = 6