I am developing Windows Phone 8.1 app and doing everything right but bing map doing exactly nothing, I am calling bing map on my program. In this damn link
samples says "you can parse 2 or more paramaters to add pushpin to map".
For example if I call Launcher with this
bingmaps:?collection=point.36.116584_-115.176753_Caesars%20Palace~point.36.113126_-115.175188_The%20Bellagio
but it add only 1 pushpin which is a head point on url. I must see 2 pushpins on bing map, must I?
What am I wrong? My test code is here:
string a = "bingmaps:?collection=point.36.116584_-115.176753_Caesars%20Palace~point.36.113126_-115.175188_The%20Bellagio&lvl=16&cp=36.114902~-115.176669";
await Launcher.LaunchUriAsync(new Uri(a));