我想知道Bing Maps是否在Windows Phone上有搜索栏,就像Android上的谷歌地图一样。像这样:
我只需要搜索具体位置。在输入国家,市镇或者街道的名称的时候,我只想要那个app在地图上显示这个地方。
答案 0 :(得分:0)
如果你没有解决问题,请试试这个:
private void getAddress()
{
WebClient webClient = new WebClient();
webClient.DownloadStringCompleted += new DownloadStringCompletedEventHandler(webClient_DownloadStringCompleted);
webClient.DownloadStringAsync(new Uri("http://nominatim.openstreetmap.org/search?city=%22new%20york%22&format=json"));
}
void webClient_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
{
Console.WriteLine("e.Result==>" + e.Result);
}
只需在click事件上调用getAddress()即可。你将获得json数据。!!