open class Icon
Class that represents an image on the map. It can be used e.g., as a visual representation of a marker.
open class Factory
Factory class used to create an |
Icon(name: String!, width: Int, height: Int, scale: Double, data: ByteArray!, isAnimated: Boolean)
Constructor for drawables. |
open fun equals(other: Any?): Boolean |
|
open fun getData(): ByteArray?
Get icon image as a byte array. |
|
open fun getHeight(): Int
Get icon image height. |
|
open fun getName(): String!
Get icon name. |
|
open fun getScale(): Double
Get icon scale. |
|
open fun getWidth(): Int
Get icon image width. |
|
open fun hashCode(): Int |
|
open fun isAnimated(): Boolean
Determines if an icon is animated. |
|
open fun toString(): String |