Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I use ArcGIS Runtime SDK for Qt Version 100.9.0.
I want to use [retryLoad].But It failed and got error.

Error String is [Error: Invalid response The service is not tiled].
I searched for this error, but didn't details.

Here is the behavior I want:

  1. Application launch (Internet is disconnected)
  2. Application window is show (Internet is disconnected)
  3. Internet connecting
  4. [retryLoad()] run (Internet is connected)
  5. The map displays

My code:

ApplicationWindow {
    id: appWindow
    width: 800
    height: 600
    title: "TestMap"

    // add a mapView component
    MapView {
        id: viewtest
        anchors.fill: parent
        // set focus to enable keyboard navigation
        focus: true

        // add a map to the mapview
        Map {
            id: mapType
            // add the BasemapTopographic basemap to the map
            BasemapTopographic {}
        }
    }

    Shortcut{
        sequence: "F5"
        onActivated: {
           mapType.retryLoad()
        }
    }
}

My environment:
OS: Windows10
Qt: 1.15.0 MSVC2019
QtCreator: 4.14.0-rc1(4.13.84)
ArcGIS: 100.9.0

question from:https://stackoverflow.com/questions/65912318/arcgis-qt-retryload-is-failed

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
827 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...