CLLocationCoordinate2D class

The latitude and longitude associated with a location, specified using the WGS 84 reference frame.

See https://developer.apple.com/documentation/corelocation/cllocationcoordinate2d

Constructors

CLLocationCoordinate2D.pigeon_detached({BinaryMessenger? pigeon_binaryMessenger, PigeonInstanceManager? pigeon_instanceManager, required double latitude, required double longitude, void observeValue(NSObject pigeon_instance, String? keyPath, NSObject? object, Map<KeyValueChangeKey, Object?>? change)?})
Constructs CLLocationCoordinate2D without creating the associated native object.

Properties

hashCode int
The hash code for this object.
no setterinherited
latitude double
The latitude in degrees.
final
longitude double
The longitude in degrees.
final
observeValue → void Function(NSObject pigeon_instance, String? keyPath, NSObject? object, Map<KeyValueChangeKey, Object?>? change)?
Informs the observing object when the value at the specified key path relative to the observed object has changed.
finalinherited
pigeon_binaryMessenger BinaryMessenger?
Sends and receives binary data across the Flutter platform barrier.
finalinherited
pigeon_instanceManager → PigeonInstanceManager
Maintains instances stored to communicate with native language objects.
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

addObserver(NSObject observer, String keyPath, List<KeyValueObservingOptions> options) Future<void>
Registers the observer object to receive KVO notifications for the key path relative to the object receiving this message.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
pigeon_copy() CLLocationCoordinate2D
Instantiates and returns a functionally identical object to oneself.
removeObserver(NSObject observer, String keyPath) Future<void>
Stops the observer object from receiving change notifications for the property specified by the key path relative to the object receiving this message.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

pigeon_setUpMessageHandlers({bool pigeon_clearHandlers = false, BinaryMessenger? pigeon_binaryMessenger, PigeonInstanceManager? pigeon_instanceManager, CLLocationCoordinate2D pigeon_newInstance(double latitude, double longitude)?}) → void