# libBaiduMapCompoment **Repository Path**: lbh/libBaiduMapCompoment ## Basic Information - **Project Name**: libBaiduMapCompoment - **Description**: 百度map组件 - **Primary Language**: Android - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2015-08-19 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 百度地图组件 封装常用api ,统一管理。 // mMapAgent = new BaiduMapAgent(mMapView); mMapAgent.showScaleControl(false); mMapAgent.showZoomControls(false); mMapAgent.startLocation(new BDLocationListener() { @Override public void onReceiveLocation(BDLocation location) { if (location == null || mMapView == null) return; mMapAgent.setMyLocationData(location); if (isFirLoc) { isFirLoc = false; mMapAgent.setMapViewZoomTo(); mMapAgent.movePositionToCenter(location); } } private void onReceivePoi() { } }); 更多使用方法 参考Demo