如何将 ScaleBarOverlay 添加到 arcgis 地图中
How to add ScaleBarOverlay into arcgis map
上面的屏幕截图是使用自定义比例尺组件完成的,我想知道在放大和缩小 Mapview 时调整比例尺的大小。
ScaleBar{
anchors.left: mapView.left
anchors.bottom: mapView.bottom
anchors.bottomMargin: 80
anchors.margins: 10 * scaleFactor
map:mapView
}
QtObject {
id: internal
property real segmentWidth: scaleBar.width / 4
property real segmentHeight: scaleBar.width * 0.05
}
像这样设置比例尺的宽度和高度,但我如何动态设置宽度它应该在缩小时扩展宽度
允许此示例创建比例尺https://community.esri.com/thread/201990-scale-bar
在 ArcGis Mapview 中添加了此组件。
在ARCGIS地图中使用ScaleBarOverlay需要导入什么?
我尝试导入 Esri.ArcGISRuntime 100.7
ScaleBarOverlay scaleBarOverlay = new ScaleBarOverlay()
mapView.addMapOverlay(scaleBarOverlay)
它说未知组件 M300
通过将map.scale设置为比例尺的宽度得到解决方案
上面的屏幕截图是使用自定义比例尺组件完成的,我想知道在放大和缩小 Mapview 时调整比例尺的大小。
ScaleBar{
anchors.left: mapView.left
anchors.bottom: mapView.bottom
anchors.bottomMargin: 80
anchors.margins: 10 * scaleFactor
map:mapView
}
QtObject {
id: internal
property real segmentWidth: scaleBar.width / 4
property real segmentHeight: scaleBar.width * 0.05
}
像这样设置比例尺的宽度和高度,但我如何动态设置宽度它应该在缩小时扩展宽度
允许此示例创建比例尺https://community.esri.com/thread/201990-scale-bar
在 ArcGis Mapview 中添加了此组件。
在ARCGIS地图中使用ScaleBarOverlay需要导入什么?
我尝试导入 Esri.ArcGISRuntime 100.7
ScaleBarOverlay scaleBarOverlay = new ScaleBarOverlay()
mapView.addMapOverlay(scaleBarOverlay)
它说未知组件 M300
通过将map.scale设置为比例尺的宽度得到解决方案