I have a map with a symbol on it, that I introduce using this following code:
symbolOptions = SymbolOptions()
.withLatLng(LatLng(localImageObject.locationLat, localImageObject.locationLong))
.withIconImage(DERE_PIN)
.withIconSize(1.3f)
.withZIndex(10)
.withDraggable(true)
symbolManager.create(symbolOptions)
So currently my map has one symbol on it. I'd like it to be so when the user long presses the map or clicks, the symbol would change it's location and not create a new one. How can I do this?