MSFPointGeometry

Objective-C


@interface MSFPointGeometry : MSFGeometry

Swift

class MSFPointGeometry : MSFGeometry

Point geometry. Geometry is defined by a single map position.

  • Constructs a PointGeometry object from a given map position.

    Declaration

    Objective-C

    - (id)initWithPos:(MSFMapPos *)pos;

    Swift

    init!(pos: MSFMapPos!)

    Parameters

    pos

    The map position.

  • Undocumented

    Declaration

    Objective-C

    - (MSFMapPos *)getCenterPos;

    Swift

    func getCenterPos() -> MSFMapPos!
  • Undocumented

    Declaration

    Objective-C

    - (enum MSFGeometryType)getType;

    Swift

    func getType() -> MSFGeometryType
  • Returns the position of the point.

    Declaration

    Objective-C

    - (MSFMapPos *)getPos;

    Swift

    func getPos() -> MSFMapPos!

    Return Value

    The position of the point.

  • Undocumented

    Declaration

    Objective-C

    -(void)dealloc;

    Swift

    func dealloc()