Hi to all, I am developing a C++ application using ArcGIS Runtime Qt SDK . I have a dynamically generated a QImage and I need to overlay this image on MapView at least at 10Hz.
Using PictureMarkerSymbol, slows down the whole rendering process.
Someone suggested using the KmlGroundOverlay and KmlIcon. I also implemented this solution and seems to be the optimal solution.
My problem is that Kml Icon require a QUrl image path, but I don't want to write the image to disk every time. I tried using the qqmlimageprovider from my C++ method, but KmlIcon doesn't load the image.
Can someone help me?