I try to do retryLoad(), but It's no work.
import QtQuick 2.6
import QtQuick.Controls 2.2
import Esri.ArcGISRuntime 100.9
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()
}
}
} It shoulde be work retryLoad, if "F5" key is clicked.
But mapType.loadStatus remain Enums.LoadStatusFailedToLoad.
My environment
:Qt 1.15.0 MSVC2019
:ArcGIS 100.9
It something missing or My environment is worse?