如何在 bing 地图版本 7 中发出无需回调的地理编码请求?

发布于 2024-11-17 22:23:46 字数 65 浏览 2 评论 0原文

是否可以像 6.2 版本那样在不指定回调函数的情况下发出地理编码请求?我需要在执行地理编码请求的函数中接收位置数据。

Is it possible to make geocode request without specify callback function like it was in 6.2 version? I need to receive location data in function from which was executed geocode request.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疾风者 2024-11-24 22:23:46

我的猜测是您指的是当前的 JSONP 接口。好吧,假设您使用的是 jQuery,您可以轻松地在调用范围内使用回调。

示例:

var geocodeRequest = "http://dev.virtualearth.net/REST/v1/Locations?" + 
    "YOUR_SEARCH_QUERY" + "&output=json&key=" + "YOUR_BINGMAPSKEY";

$.ajax({
    url: geocodeRequest,
    dataType: 'jsonp',
    jsonp: 'jsonp',
    error: function(XMLHttpRequest, textStatus, errorThrown) {

        //handle error as you please
    },
    success: function(data, textstatus, XMLHttpRequest) {

        //handle result in the array 'data.resourceSets'
    }
});

我的地理编码 URL 可能与您的不同。特定国家/地区有特定的 URL。

My guess is that you're refering to the current JSONP interface. Well, assuming that you're using jQuery you can easily work with the callback in the scope of the call.

Example:

var geocodeRequest = "http://dev.virtualearth.net/REST/v1/Locations?" + 
    "YOUR_SEARCH_QUERY" + "&output=json&key=" + "YOUR_BINGMAPSKEY";

$.ajax({
    url: geocodeRequest,
    dataType: 'jsonp',
    jsonp: 'jsonp',
    error: function(XMLHttpRequest, textStatus, errorThrown) {

        //handle error as you please
    },
    success: function(data, textstatus, XMLHttpRequest) {

        //handle result in the array 'data.resourceSets'
    }
});

My geocoding URL may differ from yours. There are specific URLs for specific countries.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文