coordinates property
The geographic coordinates of the match.
Returns
- A Coordinates object describing the matched position.
Implementation
Coordinates get coordinates {
final OperationResult resultString = objectMethod(
pointerId,
'MarkerMatch',
'getCoordinates',
);
return Coordinates.fromJson(resultString['result']);
}