首次打开地图定位成功后,用户把地图滑倒了别的地方,怎么能让地图重新回到用户所在的位置呢?百度地图官方App可以做到,在左下角。但是没有找到相关API。
闭关修行中......
LatLng point = new LatLng(myLatitude, myLongitude);//緯度と経度は BDLocation を通じて取得できますmBaiduMap.setMapStatus(MapStatusUpdateFactory.newLatLng(point));
測位 API はユーザーの現在位置の座標点を取得します、mapView.getController().animateTo(point);
LatLng point = new LatLng(myLatitude, myLongitude);//緯度と経度は BDLocation を通じて取得できます
mBaiduMap.setMapStatus(MapStatusUpdateFactory.newLatLng(point));
測位 API はユーザーの現在位置の座標点を取得します、mapView.getController().animateTo(point);