我需要加载Google地图,因此标记偏离中心,换句话说,地图的中心不在中心,而是向右移动。我希望这是有道理的。
这是我正在使用的脚本。
function setCenterCoords($lon,$lat) {
$this->centerLatitude = (float) $lat;
$this->centerLongitude = (float) $lon;
}
我如何制作它以使中心显示在页面右侧2/3而不是页面中间?谢谢
答案 0 :(得分:6)
使用方法setCenter(latlng)根据需要将地图居中。
答案 1 :(得分:0)
如Google Maps API文档中所述,假设您使用的是JavaScript API,则可以在地图选项中设置中心:
https://developers.google.com/maps/documentation/javascript/tutorial#MapOptions