我在地图上有一个标记humanMarker。如何在用户移动时移动它?
private Marker humanMarker;
humanMarker = map.addMarker(new MarkerOptions()
.position(new LatLng(mLocation.getLatitude(), mLocation.getLongitude()))
.icon(BitmapDescriptorFactory.fromResource(R.drawable.human)));
答案 0 :(得分:1)
尝试覆盖onLocationChanged
方法。当用户的位置发生变化时,humanMarker
会移动。
@Override
public void onLocationChanged(Location location) {
// Update current location of the marker
humanMarker.setPosition(new LatLng(location.getLatitude(), location.getLongitude()));
}