getSymbolLatLng method
Retrieves the current position of the symbol.
This may be different from the value of symbol.options.geometry
if the symbol is draggable.
In that case this method provides the symbol's actual position, and symbol.options.geometry
the last programmatically set position.
Implementation
Future<LatLng> getSymbolLatLng(Symbol symbol) async {
return symbol.options.geometry!;
}