新人求助,Android百度地图开发,怎么设置新的中心点

2025-04-02 05:23:14
推荐回答(1个)
回答1:

地图中心点开始是你set进去的,你移动过后可以根据你移动的像素PIXEL再转换到LATLNG,加上偏移量就是你移动过后的新的中心点了
在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);
这样设置就可以定位到你当前的位置。不知道你想要的是不是这个结果