coordinates property
Item coordinates on the map.
Returns
- A Coordinates instance. When coordinates are not available the returned object's Coordinates.isValid field will be false.
Implementation
Coordinates get coordinates {
final OperationResult resultString = objectMethod(
pointerId,
'OverlayItem',
'coordinates',
);
return Coordinates.fromJson(resultString['result']);
}