我将地图控件的初始缩放级别设置为 10。
在我使用鼠标滚轮放大后,它什么也没显示。
如果我设置了准确度,可以修复吗?
我只是想得到一个高精度的地图。
有没有好的第三方地图控件推荐?
xaml 中的代码是
<Map:MapControl Name="map"
ZoomLevel="10" Loaded="map_Loaded"
/>
cs中的代码是
Geolocator geolocator = new Geolocator();
geolocator.DesiredAccuracyInMeters = 10;
geolocator.DesiredAccuracy = PositionAccuracy.High;
Geoposition pos = await geolocator.GetGeopositionAsync();
Geopoint myLocation = pos.Coordinate.Point;
// Set the map location.
map.Center = myLocation;
我已阅读以下内容:UWP maps control 中的 Zoom Level over 20 和https://docs.microsoft.com/zh-cn/windows/uwp/maps-and-location/guidelines-and-checklist-for-detecting-location