public final class

BitmapDescriptor

extends Object
java.lang.Object
   ↳ com.google.android.gms.maps.model.BitmapDescriptor

Class Overview

Defines an image. For a marker, it can be used to set the image of the marker icon. For a ground overlay, it can be used to set the image to place on the surface of the earth. To obtain a BitmapDescriptor use the factory class BitmapDescriptorFactory.

Example of setting the icon of a marker BitmapDescriptor.

 GoogleMap map = ... // get a map.
   // Add a marker at San Francisco with an azure colored marker.
   Marker marker = map.add(new MarkerOptions()
       .position(new LatLng(37.7750, 122.4183))
       .title("San Francisco")
       .snippet("Population: 776733"))
       .icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_AZURE));

Summary

[Expand]
Inherited Methods
From class java.lang.Object
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.