Defines options for a ground overlay.
| float | NO_DIMENSION | Flag for when no dimension is specified for the height. |
|
GroundOverlayOptions()
Creates a new set of ground overlay options.
|
| GroundOverlayOptions |
anchor(float u, float v)
Specifies the anchor.
|
| GroundOverlayOptions |
bearing(float bearing)
Specifies the bearing of the ground overlay in degrees clockwise from north.
|
| GroundOverlayOptions |
clickable(boolean clickable)
Specifies whether the ground overlay is clickable.
|
| float |
getAnchorU()
Horizontal relative anchor;
0.0 and 1.0 denote left
and right edges respectively.
|
| float |
getAnchorV()
Vertical relative anchor;
0.0 and 1.0 denote top and
bottom edges respectively.
|
| float |
getBearing()
Gets the bearing set for this
GroundOverlayOptions object.
|
| LatLngBounds |
getBounds()
Gets the bounds set for this
GroundOverlayOptions object.
|
| float |
getHeight()
Gets the height set for this
GroundOverlayOptions object.
|
| BitmapDescriptor |
getImage()
Gets the image descriptor set for this
GroundOverlayOptions object.
|
| LatLng |
getLocation()
Gets the location set for this
GroundOverlayOptions object.
|
| float |
getTransparency()
Gets the transparency set for this
GroundOverlayOptions object.
|
| float |
getWidth()
Gets the width set for this
GroundOverlayOptions object.
|
| float |
getZIndex()
Gets the zIndex set for this
GroundOverlayOptions object.
|
| GroundOverlayOptions | |
| boolean |
isClickable()
Gets the clickability setting for this
GroundOverlayOptions object.
|
| boolean |
isVisible()
Gets the visibility setting for this
GroundOverlayOptions object.
|
| GroundOverlayOptions | |
| GroundOverlayOptions | |
| GroundOverlayOptions | |
| GroundOverlayOptions |
transparency(float transparency)
Specifies the transparency of the ground overlay.
|
| GroundOverlayOptions |
visible(boolean visible)
Specifies the visibility for the ground overlay.
|
| void |
writeToParcel(Parcel out, int
flags)
|
| GroundOverlayOptions |
zIndex(float zIndex)
Specifies the ground overlay's zIndex, i.e., the order in which it will be
drawn.
|
Flag for when no dimension is specified for the height.
Creates a new set of ground overlay options.
Specifies the anchor.
The anchor aligns with the ground overlay's location.
The anchor point is specified in 2D continuous space where (0,0), (1,0), (0,1) and (1,1) denote the top-left, top-right, bottom-left and bottom-right corners respectively.
*-----+-----+-----+-----* | | | | | | | | | | +-----+-----+-----+-----+ | | | X | | (U, V) = (0.7, 0.6) | | | | | *-----+-----+-----+-----*
| u | u-coordinate of the anchor |
|---|---|
| v | v-coordinate of the anchor |
GroundOverlayOptions
object with a new anchor set.Specifies the bearing of the ground overlay in degrees clockwise from north. The rotation is performed about the anchor point. If not specified, the default is 0 (i.e., up on the image points north).
Note that latitude-longitude bound applies before the rotation.
| bearing | the bearing in degrees clockwise from north. Values outside the range [0, 360) will be normalized. |
|---|
GroundOverlayOptions
object with a new bearing set.Specifies whether the ground overlay is clickable. The default clickability is
false.
| clickable | The new clickability setting. |
|---|
GroundOverlayOptions
object with a new clickability setting.Horizontal relative anchor; 0.0 and 1.0 denote left and
right edges respectively. Other anchor values are interpolated accordingly.
Vertical relative anchor; 0.0 and 1.0 denote top and
bottom edges respectively. Other anchor values are interpolated accordingly.
Gets the bearing set for this GroundOverlayOptions
object.
Gets the bounds set for this GroundOverlayOptions
object.
null if the position
was set using
position(LatLng, float) or
position(LatLng, float, float)Gets the height set for this GroundOverlayOptions
object.
Gets the image descriptor set for this GroundOverlayOptions
object.
BitmapDescriptor
representing the image of the ground overlay.Gets the location set for this GroundOverlayOptions
object.
null if the position was set using
positionFromBounds(LatLngBounds).Gets the transparency set for this GroundOverlayOptions
object.
Gets the width set for this GroundOverlayOptions
object.
Gets the zIndex set for this GroundOverlayOptions
object.
Specifies the image for this ground overlay.
To load an image as a texture (which is used to draw the image on a map), it must be converted into an image with sides that are powers of two. This is so that a mipmap can be created in order to render the texture at various zoom levels - see Mipmap (Wikipedia) for details. Hence, to conserve memory by avoiding this conversion, it is advised that the dimensions of the image are powers of two.
| imageDescriptor | the BitmapDescriptor
to use for this ground overlay |
|---|
GroundOverlayOptions
object with a new image set.Gets the clickability setting for this GroundOverlayOptions
object.
true if the ground overlay is clickable; false if it is
not.Gets the visibility setting for this GroundOverlayOptions
object.
true if this ground overlay is visible; false if it is
not.Specifies the position for this ground overlay using an anchor point (a
LatLng)
and the width (in meters). The height will be adapted accordingly to preserve aspect
ratio.
| location | the location on the map LatLng
to which the anchor point in the given image will remain fixed. The anchor will
remain fixed to the position on the ground when transformations are applied (e.g.,
setDimensions, setBearing, etc.). |
|---|---|
| width | the width of the overlay (in meters). The height will be determined automatically based on the image aspect ratio. |
GroundOverlayOptions
object with a new position set.| IllegalArgumentException | if anchor is null |
|---|---|
| IllegalArgumentException | if width is negative |
| IllegalStateException | if the position was already set using
positionFromBounds(LatLngBounds) |
Specifies the position for this ground overlay using an anchor point (a
LatLng),
width and height (both in meters). When rendered, the image will be scaled to fit the
dimensions specified.
| location | the location on the map LatLng
to which the anchor point in the given image will remain fixed. The anchor will
remain fixed to the position on the ground when transformations are applied (e.g.,
setDimensions, setBearing, etc.). |
|---|---|
| width | the width of the overlay (in meters) |
| height | the height of the overlay (in meters) |
GroundOverlayOptions
object with a new position set.| IllegalArgumentException | if anchor is null |
|---|---|
| IllegalArgumentException | if width or height are negative |
| IllegalStateException | if the position was already set using
positionFromBounds(LatLngBounds) |
Specifies the position for this ground overlay.
| bounds | a LatLngBounds
in which to place the ground overlay |
|---|
GroundOverlayOptions
object with a new position set.| IllegalStateException | if the position was already set using
position(LatLng, float) or
position(LatLng, float, float) |
|---|
Specifies the transparency of the ground overlay. The default transparency is
0 (opaque).
| transparency | a float in the range [0..1] where 0 means that the
ground overlay is opaque and 1 means that the ground overlay is
transparent. |
|---|
GroundOverlayOptions
object with a new transparency setting.| IllegalArgumentException | if the transparency is outside the range [0..1]. |
|---|
Specifies the visibility for the ground overlay. The default visibility is
true.
GroundOverlayOptions
object with a new visibility setting.Specifies the ground overlay's zIndex, i.e., the order in which it will be drawn. See the documentation at the top of this class for more information about zIndex.
GroundOverlayOptions
object with a new zIndex set.