현재 위치 정밀 확인

713 단어
<script type="text/javascript">
		var toolBar, locationInfo;
		var locationX,locationY;
		//       ,    
		map = new AMap.Map("mapContainer", {
			resizeEnable: true
		});
		//         ToolBar  
		map.plugin(["AMap.ToolBar"],function(){		
			toolBar = new AMap.ToolBar(); //            
			map.addControl(toolBar);		
			AMap.event.addListener(toolBar,'location',function callback(e){	
				locationInfo = e.lnglat;//       
				locationX = locationInfo.lng;
				locationY = locationInfo.lat;		
			});
		});
		toolBar.doLocation();   doLocation()      
	</script>

toolBar만 호출됩니다.doLocation () 방법의 포지셔닝이 완료된 후에야 리셋 함수를 통해 lng과lat 값을 얻을 수 있습니다

좋은 웹페이지 즐겨찾기