我試圖爲我的網站設計Google地圖的樣式如下:http://www.sidewalkprophets.com/shows 他們只顯示美國,不幸的是該網站使用API V2。使用API V3的造型/主題谷歌地圖
使用Google Maps API V3的可能性相同嗎?有人能幫我嗎?
我試圖爲我的網站設計Google地圖的樣式如下:http://www.sidewalkprophets.com/shows 他們只顯示美國,不幸的是該網站使用API V2。使用API V3的造型/主題谷歌地圖
使用Google Maps API V3的可能性相同嗎?有人能幫我嗎?
我有一個簡單的表格,你這樣做沒有這麼多的腳本,等
可以使用gmap3.net工具,它的simples編輯您的地圖你怎麼想。
檢查此鏈接:
要鎖定您可以使用map.Options{ draggable: false};
,使用戶無法拖動地圖的位置,並將其設置你想要的緯度和經度和縮放級別。這是一個簡單的例子:
var mapDiv = document.getElementById('mappy');
var mapOptions = {
zoom: 12, //select the zoom that you want
draggable: false, //this will lock the draggable option
center: new google.maps.LatLng(-23.563594, -46.654239), //change here the latitude and longitude
mapTypeId : google.maps.MapTypeId.ROADMAP
}
pode ser ROADMAP, SATELLITE, HYBRID, TERRAIN
map = new google.maps.Map(mapDiv, mapOptions); //this will include the variables in one to create the map with the options
好運=)!
如何只顯示美國? – 2012-08-01 08:14:12
我編輯了代碼,檢查它,如果你的問題解決了,請檢查其他用戶有相同問題的答案=) – 2012-08-01 13:18:20
以下是用於風格化地圖的Google Maps文檔:[Static Maps](https://developers.google.com/maps/documentation/staticmaps/#StyledMaps)和[Dynamic Maps](https://developers.google .com/maps/documentation/javascript/styling) – 2012-07-31 15:48:39