前端怎么更改百度地图的定位图标

如题所述

第1个回答  2017-08-03
MyLocationConfiguration.LocationMode mCurrentMode = MyLocationConfiguration.LocationMode.NORMAL;

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

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