-1
我試圖創建使用來自外部API http://geokey.org.uk/docs/web/project-response.html外部API數據,谷歌地圖
API響應數據谷歌地圖多邊形給出如下:
{
"id": 28,
"name": "Local spots",
"description": "",
"isprivate": true,
"status": "active",
"created_at": "2014-09-15T09:40:01.747Z",
"geographic_extent": {
"type": "Polygon",
"coordinates": [
[
[-0.508, 51.682],
[-0.53, 51.327],
[0.225, 51.323],
[0.167, 51.667],
[-0.508, 51.682]
]
]
},
我如何提取geographic_extent - 座標和呈現他們在谷歌地圖上的多邊形? - 我知道它應該是一個AJAX但得到會返回一個完整的數組?
非常感謝幫助。
感謝
的腳本generaing地圖 VAR地圖;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
zoom: 2,
center: new google.maps.LatLng(2.8,-187.3),
});
}