I set the Map Control's initial zoom level to 10.
After I use mouse wheel to zoom it up,it shows nothing.
If I set the accuarcy,can this be fixed?
I just try to get a high-accuracy map.
Are there any good third part map control to recommend?
code in xaml is
<Map:MapControl Name="map"
ZoomLevel="10" Loaded="map_Loaded"
/>
code in cs is
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;
I have read these:Zoom Level over 20 in UWP maps control and https://learn.microsoft.com/zh-cn/windows/uwp/maps-and-location/guidelines-and-checklist-for-detecting-location