我在各个地方使用了Google Maps API第2版函数GDownloadUrl
来下载XML / JSON数据。我正在将大约三十个地图页面转换为版本3,我无法找到相应的此功能。是否有一个或我应该使用另一个库来处理AJAX / XHR?
答案 0 :(得分:3)
google maps API v3中没有内置功能(如果你想要一些历史记录,还有several discussions in the v3 group,包括this one including an answer by Pamela Fox from google (at the time))。 demo gallery中有一个示例(搜索xml),我在example from Mike WIlliams' v2 tutorial that I translated to v3中使用了一个版本。
答案 1 :(得分:0)
API V3中没有等效功能。我使用基于这个例子编写的this separate function:
https://developer.mozilla.org/En/AJAX:Getting_Started#Step_3_.E2.80.93_A_Simple_Example
(它适用于所有浏览器)
答案 2 :(得分:0)
而不是......
GDownloadUrl('https://your/url.json', function(data) {
// ...
});
...假设您已加载jQuery并且可以$
显示,则可以执行此操作:
$.get('https://your/url.json', function(data) {
// ...
});