Search code examples
androidosmdroidmylocationoverlay

MyLocationOverlay is deprecated, any alternative?


MyLocationOverlay is deprecated. Is there any alternative?

MapView mapView;
MyLocationOverlay myLocationoverlay;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    myLocationoverlay = new MyLocationOverlay(this, mapView);
    ...

Solution

  • The new class is the MyLocationNewOverlay.