Im working with Arcgis runtime sdk for qt.
I have added a scene view to display a 3D map.
My question is how to display the device current location.#QT qtcreator #arcgis runtime sdk for qt
Solved! Go to Solution.
The LocationDisplay is only supported on the MapView currently. As a workaround, what you could do in the meantime is use QML's PositionSource object to get location updates, and add a GraphicsOverlays with a Marker Symbol graphic in it. Then, update the Graphic's geometry based on the updated position from PositionSource.
The LocationDisplay is only supported on the MapView currently. As a workaround, what you could do in the meantime is use QML's PositionSource object to get location updates, and add a GraphicsOverlays with a Marker Symbol graphic in it. Then, update the Graphic's geometry based on the updated position from PositionSource.
Thank you Lucas