android - Androidmarker not found -


I'm following this tutorial to add an overlay to a Google map (http://developer.android .com / guide /tutorials/views/hello-mapview.html). Map Overlay = mapView.getOverlays (); Drawable = this.getResources (). GetDrawable (R.drawable.androidmarker); // There is no androidmarker.png in the rearranged folder itemizedoverlay = new HelloItemizedOverlay (drawable);

Where can I find this icon (HDPI / LDPI and MDPI version)?

Tutorials Cleary State:

First, we need a picture That we will use for our map overlays. Here, we will use Android as our marker. Drag this image (or your own) into res / drawable / directory of this project workspace.

androidmarker

So if you actually If you are searching for specific Android markers, use one of the tutorials. If you want, you can use any other marker.

Comments