最新回答 / Async_YY
看看你是不是少在Activity生命周期onStart()没有添加开启的允许和启动定位protected void onStart() { super.onStart(); //开启定位 mBaiduMap.setMyLocationEnabled(true); //开启定位的允许 if (!mLocationClient.isStarted()) { mLocationClient.start(); //启动定位 }}
2016-11-18