开发者

Bing Maps Launcher

开发者 https://www.devze.com 2023-01-30 22:05 出处:网络
I\'m aware of the Map control, but I would like to open bing maps app instead. Is there a way ? Otherwise, I\'ll do a Page that displays a Map con开发者_开发百科trol fullscreenYou can use a Bing Maps

I'm aware of the Map control, but I would like to open bing maps app instead. Is there a way ? Otherwise, I'll do a Page that displays a Map con开发者_开发百科trol fullscreen


You can use a Bing Maps Task, and specify the location:

http://msdn.microsoft.com/en-us/library/hh394026%28v=vs.92%29.aspx

BingMapsTask bingMapsTask = new BingMapsTask();
bingMapsTask.Center = new GeoCoordinate(47.6204, -122.3493);
bingMapsTask.ZoomLevel = 2;

bingMapsTask.Show();


Is there a way to open the Bing Maps App on Windows Phone 7 to a specific location?

Short answer: no direct way to launch the Bing maps app.

0

精彩评论

暂无评论...
验证码 换一张
取 消