Dear Sir or Madam
Could you tell me any ways to display the ArcGis map after reconnecting to the net using Qt?
I try to open the ArcGis map using Qt/QML online like
//Qml File(Esri.ArcGISRuntime 100.8 Qt 5.15.2 Windows10)
import xxxxxxxxxxxxx
property xxxxxxxxxxxxxxxx
Map {
BasemapTopographic {}
}
If the app firstly connect to the net, it can display the map because I use a online map.
On the other hand , if I open the app in case of offline firstly, it cannot display the map . And Even if my pc can connect to the net, the app cannot display the map.
I don't know how to display the ArcGis map after reconnecting to the net.
Best regards
Solved! Go to Solution.
Hi Morita,
Async tasks like this normally follow our loadable pattern. If a failure to load has occured (i.e. no network connection), you call `retryLoad()` on the map to try again.
Hi Morita,
Async tasks like this normally follow our loadable pattern. If a failure to load has occured (i.e. no network connection), you call `retryLoad()` on the map to try again.
Hello NeilMacDonald
Thank you for replying.
I could load my map again !