在onLocationChanged(Location location)函数中
latitude = location.getLatitude()
longitude = location.getLongitude()
GeoPoint myLocationPoint = new GeoPoint((int) ( latitude * 1E6),
(int) (longitude * 1E6))
mMapController.animateTo(myLocationPoint)
mMapController.setCenter(myLocationPoint)
这样设置就可以定位到你当前的位置。不知道你想要的是不是这个结果
map.centerAndZoom(new BMap.Point(117.003062,39.549215), 14)改这句坐标Point(117.003062,39.549215),就是中心点,14是缩放级别
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)