我在各個地方使用Google Maps API版本2函數GDownloadUrl
來下載XML/JSON數據。我將大約三十張地圖頁面轉換爲版本3,而我無法找到此功能的等同物。是否有一個或者我應該使用另一個庫來處理AJAX/XHR?Google Maps API v3中是否有與GDownloadUrl函數等效的功能
2
A
回答
3
有沒有在谷歌地圖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中使用的版本。
0
API V3中沒有等效函數。我用this separate function我寫基於這個例子:
https://developer.mozilla.org/En/AJAX:Getting_Started#Step_3_.E2.80.93_A_Simple_Example
(它正常工作,在所有瀏覽器)
0
而不是...
GDownloadUrl('https://your/url.json', function(data) {
// ...
});
...你可以做到這一點,假設你有jQuery加載,並且可以作爲$
:
$.get('https://your/url.json', function(data) {
// ...
});
相關問題
- 1. GInfoWindowTab等效於Google Maps API v3
- 2. Google Maps JavaScript API v3指導功能
- 3. 使用Google Maps腳本中的完整Google Maps V3 API及其所有功能
- 4. Rust是否具有與Python的unichr()函數等效的功能?
- 5. Mapkit是否使用Google Maps API V3?
- 6. 有沒有與mkmapsnapshotter等效的Google Maps?
- 7. Google Maps API v2 vs Google Maps API v3?
- 8. Google Maps v3 map.getBounds()。containsLatLng不是函數
- 9. google-maps-api-v3 getProjection
- 10. Google Maps API V3:fromContainerPixelToLatLng
- 11. Google Maps API v3 - maxZoomService
- 12. Google Maps API v3 BrowserIsCompatible
- 13. 是否有與Stata中Excel的COUNTIFS函數等價的功能?
- 14. 在PHP中是否有與Microsoft SQL的isnull()函數等效的功能?
- 15. SQL Server是否具有Excel的KURT函數的等效功能?
- 16. TypeError:數字不是函數 - 嘗試使用Google Maps API V3 DirectionsService
- 17. Python(wxPython)是否具有JavaScript setTimeout函數的等效功能?
- 18. Google Maps API:這是什麼功能?
- 19. 異步Google Maps API v3 undefined不是函數
- 20. Google API V3:computeOffset函數
- 21. 是否有與WebExtensions的nsIBrowserSearchService等效的功能?
- 22. x86_64是否具有與指令中的aarch64等效的功能?
- 23. Google Maps API V3 - Javascript問題
- 24. Google Maps API v3不顯示
- 25. Google Maps API V3返回610,0,0,0
- 26. Google Maps API V3和Internet Explorer
- 27. Google Maps API V3 - Internet Explorer
- 28. Google maps api v3 + marker clusterer:centering map?
- 29. MVC 4和Google Maps API v3
- 30. kml + google maps api v3 + geoxml3
你的鏈接斷開。 – user712092 2013-08-07 15:03:28