java.lang.Object | |
↳ | com.google.android.gms.maps.model.Tile |
Contains information about a Tile that is returned by a TileProvider
.
[Expand]
Inherited Constants | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.os.Parcelable
|
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
CREATOR | |||||||||||
data | A byte array containing the image data. | ||||||||||
height | The width of the image encoded by data in pixels. |
||||||||||
width | The width of the image encoded by data in pixels. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Constructs a
Tile . |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||||||||||||||||||||||||
From interface
android.os.Parcelable
|
A byte array containing the image data. The image will be created from this data by calling
decodeByteArray(byte[], int, int)
.
Constructs a Tile
.
width | the width of the image in pixels |
---|---|
height | the height of the image in pixels |
data | A byte array containing the image data. The image will be created from this data
by calling decodeByteArray(byte[], int, int) .
|