bing maps app / Windows Phone 7中的搜索栏

时间:2013-08-14 10:04:34

标签: windows-phone-7 bing-maps

我想知道Bing Maps是否在Windows Phone上有搜索栏,就像Android上的谷歌地图一样。像这样:

enter image description here

我只需要搜索具体位置。在输入国家,市镇或者街道的名称的时候,我只想要那个app在地图上显示这个地方。

1 个答案:

答案 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数据。!!