Hi,
We are using Arcgis Runtime SDK for Qt 10.2.6 and Qt 5.4.2 (MSVC 2013, 32 bit) Qt Creator QT\QML side. We developing Windows Application Desktop QT 5.4.2 MSVC2013 32bit for Windows 10 Tablet OS 32bit .But when we execute app.exe when Windows Tablet location is open and when we activate PositionSource app.exe crashes.How can I solve this problem ?
Thanks
ApplicationWindow { id: appWindow
width: 800
height: 600
title: "gpsTest"
property double scaleFactor:1
Map { id:myMap
anchors.fill: parent
focus: true
ArcGISTiledMapServiceLayer { url: "http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"
}
positionDisplay { positionSource: PositionSource { id: positionSource
active: true
updateInterval: 1
}
}
}
NavigationToolbar { id:navigation
map:myMap
anchors { right: parent.right
leftMargin: 50*scaleFactor
verticalCenter: parent.verticalCenter
}
}
}