coordinates property

Coordinates get coordinates

Location coordinates for this instruction.

Returns

  • Coordinates: geographic coordinates of the instruction location.

Implementation

Coordinates get coordinates {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteInstructionBase',
    'getCoordinates',
  );

  return Coordinates.fromJson(resultString['result']);
}