将位置更改为预设坐标并单击按钮进行缩放

时间:2012-11-13 19:58:43

标签: javascript google-maps-api-3

我的谷歌地图api v3网络应用程序有一个侧面板,我想添加更改到预定义位置的功能,并在单击按钮时进行缩放。我在想javascript是答案,我不确定如何实现。提前感谢您的帮助。

1 个答案:

答案 0 :(得分:4)

以下是代码段:

<script>
function ZoomAndCenter() {
  map.setCenter(new google.maps.LatLng(-34.397, 150.644));
  map.setZoom(15);
}
</script>
<a href="javascript:ZoomAndCenter()">Move to location</a>