2014-12-19 51 views

回答

1

你可以分享地圖的初始化函數嗎?否則,請嘗試如下所示:
myMap.setCenter(myMarker.getPosition());

+0

功能初始化(緯度,經度) { \t 變種myCenter =新google.maps.LatLng(緯度,經度); \t VAR mapProp = { 中心:myCenter, 變焦:14, 的mapTypeId:google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById(「googleMap」),mapProp); var marker = new google.maps.Marker({position:myCenter, draggable:true, }); marker.setMap(map); google.maps.event.addListener(標記 'dragend',函數(事件){ \t \t的document.getElementById( 'LAT')值= event.latLng.lat(); 的document.getElementById('LNG ').value = event.latLng.lng(); }); } –

+0

嘗試map.setCenter(marker.getPosition()); – djillian

相關問題