2

I'm trying to make my first Windows 10 UA desktop app. I have a working map, but it shows the road type of map. The problem with this is, the detail isn't there, and may people won't be able to get enough info out of this. Is there a way I can switch the map view from a road to a satellite map?

crua9
  • 228
  • 3
  • 11

1 Answers1

1

Edited for response

Sorry I miss understood, didn't realize you where using the MapControl class. Below is a link that explains how to use 3d aerial and street views (towards the bottom) https://msdn.microsoft.com/en-us/library/windows/apps/mt219695.aspx

the code you are looking for is something like

 MapControl1.Style = MapStyle.Aerial3DWithRoads;

Absolutely! You can use the Bing maps API. http://www.microsoft.com/maps/choose-your-bing-maps-API.aspx

Here is a link to a guide on getting started. https://msdn.microsoft.com/en-us/library/ff428643.aspx

From the API you can then select the satellite map instead of the road.

  • Unless if I'm missing something, I can't find where you can change the map view from road to satellite map https://msdn.microsoft.com/en-us/library/windows/apps/xaml/dn615001.aspx As I said in my first post. This is the first Windows 10 app I made. So, I'm not sure what to look for. I'm use to working on Android systems. – crua9 Nov 10 '15 at 03:53
  • Responded above. Hopefully that helps – Mickey Macdonald Nov 11 '15 at 05:02
  • 1
    Thanks, it worked. For anyone wanting to get a high zoom. You may want to add this in a button because you can't zoom in as much – crua9 Nov 12 '15 at 16:48