GeographicAreaType
Objective-C
enum GeographicAreaType : NSInteger {}
Swift
enum GeographicAreaType : Int, @unchecked Sendable
Constants indicating the types of geographic areas.
-
@brief Undefined.
Declaration
Objective-C
GeographicAreaTypeUndefined = 0
Swift
case undefined = 0
-
@brief Circle area.
Declaration
Objective-C
GeographicAreaTypeCircle
Swift
case circle = 1
-
@brief Rectangle area.
Declaration
Objective-C
GeographicAreaTypeRectangle
Swift
case rectangle = 2
-
@brief Polygon area.
Declaration
Objective-C
GeographicAreaTypePolygon
Swift
case polygon = 3
-
@brief Area represented as a collection of tiles.
Declaration
Objective-C
GeographicAreaTypeTileCollection
Swift
case tileCollection = 4