百度地图 修改定位图标 替换自己的图标

MyLocationConfiguration.LocationMode mCurrentMode = MyLocationConfiguration.LocationMode.NORMAL;

BitmapDescriptor mCurrentMarker = BitmapDescriptorFactory
        .fromResource(R.mipmap.car_fcdront_red);

mBaiduMap.setMyLocationConfigeration(new MyLocationConfiguration(
        mCurrentMode, true, mCurrentMarker
        ));
搞定 后面还要弄跟随方向的,百度了一下,需要配合传感器 实现了在来贴出代码

你可能感兴趣的:(百度地图 修改定位图标 替换自己的图标)