cursorWgsPosition property
Get the cursor WGS position.
Use the cursorScreenPosition to get the cursor screen position
Returns
- The current WGS coordinates of the cursor
Throws
- An exception if it fails.
Implementation
Coordinates get cursorWgsPosition {
final OperationResult val = objectMethod(
_pointerId,
'MapView',
'getCursorWgsPosition',
);
return Coordinates.fromJson(val['result']);
}