最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Is there an equivalent for GDownloadUrl function in Google Maps API v3 - Stack Overflow

programmeradmin1浏览0评论

I used the Google Maps API version 2 function GDownloadUrl on various places to download XML/JSON data. I am converting about 3 dozen map pages to version 3 and I am unable to find an equivalent of this function. Is there one or should I use another library for handling AJAX/XHR?

I used the Google Maps API version 2 function GDownloadUrl on various places to download XML/JSON data. I am converting about 3 dozen map pages to version 3 and I am unable to find an equivalent of this function. Is there one or should I use another library for handling AJAX/XHR?

Share Improve this question edited Jul 11, 2013 at 7:43 geocodezip 161k14 gold badges227 silver badges255 bronze badges asked Jul 18, 2012 at 10:47 Salman ArshadSalman Arshad 273k84 gold badges444 silver badges534 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 3

There is no built in function in the google maps API v3 (there are several discussions in the v3 group if you want some history, including this one including an answer by Pamela Fox from google (at the time)). There is an example in the demo gallery (search for xml), and I have a version that I use in this example from Mike WIlliams' v2 tutorial that I translated to v3.

There is no equivalent function in the API V3. I use this separate function that I wrote based on this example:

https://developer.mozilla/En/AJAX:Getting_Started#Step_3_.E2.80.93_A_Simple_Example

(It works fine in all browsers)

Instead of...

    GDownloadUrl('https://your/url.json', function(data) {
        // ...
    });

...you can do this, assuming you have jQuery loaded and is available as $:

    $.get('https://your/url.json', function(data) {
        // ...
    });
发布评论

评论列表(0)

  1. 暂无评论