OMCLocationGeoPoint Class Reference

Inherits from OMCLocationAddress : NSObject
Declared in OMCLocationGeoPoint.h

Overview

A geo point, which is specified as a latitude/longitude pair, is one of several ways to specify a place’s address. Geo points are immutable.

  latitude

The point’s latitude.

@property (readonly, nullable) NSNumber *latitude

Declared In

OMCLocationGeoPoint.h

  longitude

The point’s longitude.

@property (readonly, nullable) NSNumber *longitude

Declared In

OMCLocationGeoPoint.h

+ pointWithLatitude:longitude:

Constructs a new geo point with the specified latitude and longitude.

+ (instancetype)pointWithLatitude:(NSNumber *)latitude longitude:(NSNumber *)longitude

Parameters

latitude

The point’s latitude.

longitude

The point’s longitude.

Declared In

OMCLocationGeoPoint.h