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:
- Application launch (Internet is disconnected)
- Application window is show (Internet is disconnected)
- Internet connecting
- [retryLoad()] run (Internet is connected)
- 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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…