Any solutions to display the ArcGis map after reconnecting to the net using Qt

529
2
Jump to solution
01-18-2021 01:26 AM
MoritaTsuguhiro
New Contributor

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

 

 

0 Kudos
1 Solution

Accepted Solutions
by Anonymous User
Not applicable

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.

View solution in original post

0 Kudos
2 Replies
by Anonymous User
Not applicable

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.

0 Kudos
MoritaTsuguhiro
New Contributor

Hello NeilMacDonald

Thank you  for replying.

I could load my map again !

0 Kudos