码迷,mamicode.com
首页 > 其他好文 > 详细

获取用户当前位置并设为中心点

时间:2019-10-09 12:22:07      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:success   point   function   nbsp   ant   javascrip   ati   oca   this   

 

// 获取用户当前位置
var geolocation = new BMap.Geolocation();
geolocation.getCurrentPosition(function(r){
	if(this.getStatus() == BMAP_STATUS_SUCCESS){
		var mk = new BMap.Marker(r.point);
		map.addOverlay(mk);
		map.panTo(r.point);
		alert(‘您的位置:‘+r.point.lng+‘,‘+r.point.lat);
	}
	else {
		alert(‘failed‘+this.getStatus());
	}        
});

  

获取用户当前位置并设为中心点

标签:success   point   function   nbsp   ant   javascrip   ati   oca   this   

原文地址:https://www.cnblogs.com/xhrr/p/11640818.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!