MSFMultiPointGeometry
Objective-C
@interface MSFMultiPointGeometry : MSFMultiGeometry
Swift
class MSFMultiPointGeometry : MSFMultiGeometry
A multipoint container.
-
Constructs a MultiPointGeometry from the vector of points.
Declaration
Objective-C
- (id)initWithGeometries:(MSFPointGeometryVector *)geometries;Swift
init!(geometries: MSFPointGeometryVector!)Parameters
geometriesThe vector of point geometries.
-
Undocumented
-
Returns the point geometry at the specified index. Index must be between 0 and getGeometryCount (exclusive)
Declaration
Objective-C
- (MSFPointGeometry *)getGeometry:(int)index;Swift
func getGeometry(_ index: Int32) -> MSFPointGeometry!Parameters
indexThe index of the point geometry.
Return Value
The point geometry at specified index. @throws NSException If the index is out of range.
-
Undocumented
Declaration
Objective-C
-(void)dealloc;Swift
func dealloc()