使用API​​ V3设置样本/主题Google地图

时间:2012-07-31 12:37:47

标签: javascript google-maps google-maps-api-3 google-maps-api-2

我正在尝试为我的网站设置Google地图样式:http://www.sidewalkprophets.com/shows 他们只显示美国,不幸的是该网站使用API​​ V2。

使用Google Maps API V3是否可以?有人能帮助我吗?

1 个答案:

答案 0 :(得分:1)

我有一个简单的表单,你可以在没有这么多脚本等的情况下这样做。

你可以使用gmap3.net工具,它的简单方法来编辑你的地图你喜欢什么。

检查此链接:

Gmap3 editor tool

Tutorial

要锁定您可以使用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

祝你好运=)!