从谷歌地图V2迁移到版本3

时间:2013-04-24 11:41:59

标签: javascript google-maps-api-3

我正在开发从谷歌地图V2到V3的迁移项目,无法完成以下工作。

<!DOCTYPE html>
<html>
<head>
<script
src="http://maps.googleapis.com/maps/api/js?key=myApiKey&sensor=false">
</script>

<script>
function initialize()
{
var map=new google.maps.Map(document.getElementById("googleMap"));
map.setCenter(new google.maps.LatLng(51.508742,-0.120850),5);
}

google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>

<body>
<div id="googleMap" style="width:500px;height:380px;"></div>

</body>
</html>

实际上我不想在新的google.maps.Map函数中使用options参数。我想使用map.center函数使地图居中。

1 个答案:

答案 0 :(得分:1)

这是错误的:

map.setCenter(new google.maps.LatLng(51.508742,-0.120850),5);

setCenter只接受一个参数LatLng对象。试试这个:

map.setCenter(new google.maps.LatLng(51.508742,-0.120850));