Tile Overlay Options
Builder class for creating TileOverlay instances with a fluent API. Matches the Google Maps API pattern for tile overlay configuration.
Example usage:
val overlay = TileOverlayOptions()
.tileProvider(OpenSeaMapProvider())
.transparency(0.0f)
.zIndex(1.0f)
.visible(true)Content copied to clipboard
Functions
Link copied to clipboard
Sets whether tiles fade in when loaded.
Link copied to clipboard
Sets optional user data associated with the overlay.
Link copied to clipboard
Sets the tile provider for this overlay.
Link copied to clipboard
Sets the transparency of the overlay.
Link copied to clipboard
Sets whether the overlay is visible.
Link copied to clipboard
Sets the z-index for draw order. Negative values draw below base tiles, positive values draw above.