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