windows phone 7 - How to launch Bing Map with GPS Latlon -
for google map, can use code map browser: http:// maps.google.com/map? q= lat,lon.
for bing map, how can done? thanks
you can use bingmapstask
launch bing maps app specified centre point (or search parameters - there how-to article on msdn, although code simple as:
bingmapstask bingmapstask = new bingmapstask(); //omit center property use user's current location. bingmapstask.center = new geocoordinate(52.1, 1.2); // substitute lat/long bingmapstask.show();
Comments
Post a Comment