Hello,
Welcome to our Microsoft Q&A platform!
In UWP, MapControl
provides HttpMapTileDataSource
to customize the map tile service.
Here is the document about MapTileSource
.
For using Google Map service, you can consider using this method:
public static void UseGoogleMaps(MapControl Map, string mapUri)
{
if (Map == null) return;
Map.Style = MapStyle.None;
Map.TileSources.Clear();
Map.TileSources.Add(
new MapTileSource(
new HttpMapTileDataSource(mapUri)
{
AllowCaching = true
}
)
);
}
You can also try to search related content in Github, there should be similar functions implemented in the community
Thanks.