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