SPSmartMapCameraOptions

Objective-C

@interface SPSmartMapCameraOptions : NSObject

#pragma mark - Public methods

/** Get latitude coordinate at the center of the map view */
-(double)getLatitude;

/** Get longitude coordinate at the center of the map view */
-(double)getLongitude;

/** Get current camera pitch */
-(double)getPitch;

/** Get current camera bearing */
-(double)getBearing;

/** Get current zoom level */
-(double)getZoomLevel;

-(instancetype) init __attribute__((unavailable("init unavailable")));

@end

Swift

class SPSmartMapCameraOptions : NSObject

Undocumented

Public methods

  • Get latitude coordinate at the center of the map view

    Declaration

    Objective-C

    - (double)getLatitude;

    Swift

    func getLatitude() -> Double
  • Get longitude coordinate at the center of the map view

    Declaration

    Objective-C

    - (double)getLongitude;

    Swift

    func getLongitude() -> Double
  • Get current camera pitch

    Declaration

    Objective-C

    - (double)getPitch;

    Swift

    func getPitch() -> Double
  • Get current camera bearing

    Declaration

    Objective-C

    - (double)getBearing;

    Swift

    func getBearing() -> Double
  • Get current zoom level

    Declaration

    Objective-C

    - (double)getZoomLevel;

    Swift

    func getZoomLevel() -> Double
  • Unavailable

    init unavailable

    Undocumented

    Declaration

    Objective-C

    -(instancetype) init __attribute__((unavailable("init unavailable")));