longitudeDeg property
Longitude of the event location in decimal degrees.
Values are in the range [-180.0, 180.0].
Returns
- The longitude in decimal degrees.
See also:
- coordinates - Location of the event as Coordinates.
Implementation
double get longitudeDeg {
final OperationResult resultString = objectMethod(
pointerId,
'MappedDrivingEvent',
'getLongitudeDeg',
);
return resultString['result'];
}