MSFGeometryType
Objective-C
enum MSFGeometryType : NSInteger {}
Swift
enum MSFGeometryType : Int, @unchecked Sendable
Geometry type, following the GeoJSON names.
-
A single position.
Declaration
Objective-C
MSF_GEOMETRY_TYPE_POINTSwift
case GEOMETRY_TYPE_POINT = 0 -
An ordered list of positions.
Declaration
Objective-C
MSF_GEOMETRY_TYPE_LINESwift
case GEOMETRY_TYPE_LINE = 1 -
An outer ring and any number of holes.
Declaration
Objective-C
MSF_GEOMETRY_TYPE_POLYGONSwift
case GEOMETRY_TYPE_POLYGON = 2 -
Several points.
Declaration
Objective-C
MSF_GEOMETRY_TYPE_MULTIPOINTSwift
case GEOMETRY_TYPE_MULTIPOINT = 3 -
Several lines.
Declaration
Objective-C
MSF_GEOMETRY_TYPE_MULTILINESwift
case GEOMETRY_TYPE_MULTILINE = 4 -
Several polygons.
Declaration
Objective-C
MSF_GEOMETRY_TYPE_MULTIPOLYGONSwift
case GEOMETRY_TYPE_MULTIPOLYGON = 5 -
A mixed collection.
Declaration
Objective-C
MSF_GEOMETRY_TYPE_COLLECTIONSwift
case GEOMETRY_TYPE_COLLECTION = 6