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

    geometries

    The vector of point geometries.

  • Undocumented

    Declaration

    Objective-C

    - (enum MSFGeometryType)getType;

    Swift

    func getType() -> MSFGeometryType
  • 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

    index

    The 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()