Bing 地图 7.0 地理编码 Rest 服务未调用回调函数
您好,我正在使用 bing 地图 7.0 ajax api 来显示地图。我有几个地址,我使用 JavaScript 中的休息服务对其进行地理编码以获取纬度和经度。我在地理编码请求中设置了 GeocodeCallback 方法。
geocodeRequest = "http://dev.virtualearth.net/REST/v1/Locations?"+mapDataAddress[1]+"&output=json&jsonp=GeocodeCallback&jsonso="+mapDataAddress[0]+"&key ="+凭证; CallRestService(geocodeRequest);
找到地址后,我会在 GeocodeCallback 函数中收到响应,但对于少数地址,我不会收到响应。如何找出这个状态和错误。
Hi I am using a bing maps 7.0 ajax api to display map. I have several addresses which i geocode to get latitude and longitude using rest services in javascript. I have setup up a GeocodeCallback method in the geocode request.
geocodeRequest = "http://dev.virtualearth.net/REST/v1/Locations?"+mapDataAddress[1]+"&output=json&jsonp=GeocodeCallback&jsonso="+mapDataAddress[0]+"&key="+credentials;
CallRestService(geocodeRequest);
When the address are found i get a response in my GeocodeCallback function but for few address i dont get a response. How to figure out this status and error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我明白了这一点。所以基本上你需要做两件事。
最初你有:
所以你想这样做:
I figured this out. So basically you need to do two things.
Orignially you have:
So you want to do this:
另请查看此处列出的使用 Bing 地图 REST 服务的提示和技巧:http://www.bing.com/blogs/site_blogs/b/maps/archive/2013/02/14/bing-maps-rest-service-tips-amp-tricks.aspx
Also take a look at the Tips and Tricks for using the Bing Maps REST services listed here: http://www.bing.com/blogs/site_blogs/b/maps/archive/2013/02/14/bing-maps-rest-service-tips-amp-tricks.aspx