我需要谷歌地圖才能加載,因此標記偏離中心位置,換句話說,地圖中心不在中心位置,而是位於右側。我希望這是有道理的。移動谷歌地圖中心
這是來自我正在使用的腳本。
function setCenterCoords($lon,$lat) {
$this->centerLatitude = (float) $lat;
$this->centerLongitude = (float) $lon;
}
我該怎麼做才能讓中心顯示在頁面的右側2/3而不是在頁面中間?謝謝
我需要谷歌地圖才能加載,因此標記偏離中心位置,換句話說,地圖中心不在中心位置,而是位於右側。我希望這是有道理的。移動谷歌地圖中心
這是來自我正在使用的腳本。
function setCenterCoords($lon,$lat) {
$this->centerLatitude = (float) $lat;
$this->centerLongitude = (float) $lon;
}
我該怎麼做才能讓中心顯示在頁面的右側2/3而不是在頁面中間?謝謝
使用方法setCenter(latlng),因爲你需要將地圖。
由於谷歌地圖API文檔的說明,假設你使用JavaScript API,你可以設置中心在地圖選項:
https://developers.google.com/maps/documentation/javascript/tutorial#MapOptions
謝謝。我是新來的。這是來自我正在使用的腳本。函數setCenterCoords($ lon,$ lat){$ this-> centerLatitude =(float)$ lat; $ this-> centerLongitude =(float)$ lon; }我該怎麼做才能讓中心顯示在頁面的正確2/3而不是中間?謝謝 – bobudell 2012-03-27 21:51:14
謝謝。我是新來的。這是來自我正在使用的腳本。 ($ lon,$ lat){ $ this-> centerLatitude = $ this-> centerLongitude =(float)$ lon; } 我該怎麼做才能讓中心顯示在頁面的右側2/3而不是中間?謝謝 – bobudell 2012-03-27 21:49:09
如果這個(或其他)回答你的問題,我建議你['接受它](http://meta.stackexchange.com/a/5235)作爲答案。 – 2012-10-03 18:29:47