Hello for some reason the uwp map control doesnt appear to be working properly. To rule out any issues with my code I began testing with UWP Sample Ui projects mapcontrol When I set latitude and longitude to a geopoint other than the enter image description hereSeattle/Washington state area the roads, accessways, and labels dont show in the new area. I could replicate the problem if I pan far away from Washignton the control would not update the roads and the roads or details either. It looks like the washington state maps are downloaded offline but I have a great internet connection 20-40Mb.
--Scenario1.xaml.cs private async void MyMap_Loaded(object sender, RoutedEventArgs e) { myMap.Center = new Geopoint(new BasicGeoposition() { Latitude = 33.448376, Longitude = -112.074036 });
myMap.ZoomLevel = 20;
SetMapStyle();
SetMapProjection();
await myMap.TrySetViewAsync(MainPage.SeattleGeopoint, 12);
}
Has anyone else encountered these issues? I am or my users required to download all of the state maps for it to run?
These's other promising solutions xaml-mapcontrol and using a webview to reference maps but its just a same the built in uwp control doesn't work.
Thanks