我想知道如何更改Google地圖中標記的位置。在Google地圖中設置標記位置
目前我使用:
var newlatlong = new google.maps.LatLng(place.geometry.location.lat(), place.geometry.location.lng());
map.setCenter(newlatlong);
marker.setPosition(newlatlong);
map.setZoom(10);
我可以手工編寫代碼的標誌物在比中心位置以外的地圖位置?
我的意思是map.setCenter(newlatlong);
,而不是setCenter
有沒有其他可用的位置?或者我可以手動編碼標記出現在地圖上的位置?
你說的是鼠標指針的位置嗎?或一些標記? – Thierry
只需對問題進行編輯即可。這是地圖標記。 – user1012181