Package com.mapbox.maps.extension.style.layers.generated

Types

BackgroundLayer
Link copied to clipboard

The background color or pattern of the map.

class BackgroundLayer(layerId: String) : Layer, BackgroundLayerDsl
BackgroundLayerDsl
Link copied to clipboard

This Interface contains all the functions that will be exposed to Koltin DSL.

Separated the DSL receiver class to this interface to avoid IDE code suggestion for property getters.

interface BackgroundLayerDsl
CircleLayer
Link copied to clipboard

A filled circle.

class CircleLayer(layerId: String, sourceId: String) : Layer, CircleLayerDsl
CircleLayerDsl
Link copied to clipboard

This Interface contains all the functions that will be exposed to Koltin DSL.

Separated the DSL receiver class to this interface to avoid IDE code suggestion for property getters.

interface CircleLayerDsl
FillExtrusionLayer
Link copied to clipboard

An extruded (3D) polygon.

class FillExtrusionLayer(layerId: String, sourceId: String) : Layer, FillExtrusionLayerDsl
FillExtrusionLayerDsl
Link copied to clipboard

This Interface contains all the functions that will be exposed to Koltin DSL.

Separated the DSL receiver class to this interface to avoid IDE code suggestion for property getters.

interface FillExtrusionLayerDsl
FillLayer
Link copied to clipboard

A filled polygon with an optional stroked border.

class FillLayer(layerId: String, sourceId: String) : Layer, FillLayerDsl
FillLayerDsl
Link copied to clipboard

This Interface contains all the functions that will be exposed to Koltin DSL.

Separated the DSL receiver class to this interface to avoid IDE code suggestion for property getters.

interface FillLayerDsl
HeatmapLayer
Link copied to clipboard

A heatmap.

class HeatmapLayer(layerId: String, sourceId: String) : Layer, HeatmapLayerDsl
HeatmapLayerDsl
Link copied to clipboard

This Interface contains all the functions that will be exposed to Koltin DSL.

Separated the DSL receiver class to this interface to avoid IDE code suggestion for property getters.

interface HeatmapLayerDsl
HillshadeLayer
Link copied to clipboard

Client-side hillshading visualization based on DEM data. Currently, the implementation only supports Mapbox Terrain RGB and Mapzen Terrarium tiles.

class HillshadeLayer(layerId: String, sourceId: String) : Layer, HillshadeLayerDsl
HillshadeLayerDsl
Link copied to clipboard

This Interface contains all the functions that will be exposed to Koltin DSL.

Separated the DSL receiver class to this interface to avoid IDE code suggestion for property getters.

interface HillshadeLayerDsl
LineLayer
Link copied to clipboard

A stroked line.

class LineLayer(layerId: String, sourceId: String) : Layer, LineLayerDsl
LineLayerDsl
Link copied to clipboard

This Interface contains all the functions that will be exposed to Koltin DSL.

Separated the DSL receiver class to this interface to avoid IDE code suggestion for property getters.

interface LineLayerDsl
LocationIndicatorLayer
Link copied to clipboard

Location Indicator layer.

class LocationIndicatorLayer(layerId: String) : Layer, LocationIndicatorLayerDsl
LocationIndicatorLayerDsl
Link copied to clipboard

This Interface contains all the functions that will be exposed to Koltin DSL.

Separated the DSL receiver class to this interface to avoid IDE code suggestion for property getters.

interface LocationIndicatorLayerDsl
RasterLayer
Link copied to clipboard

Raster map textures such as satellite imagery.

class RasterLayer(layerId: String, sourceId: String) : Layer, RasterLayerDsl
RasterLayerDsl
Link copied to clipboard

This Interface contains all the functions that will be exposed to Koltin DSL.

Separated the DSL receiver class to this interface to avoid IDE code suggestion for property getters.

interface RasterLayerDsl
SkyLayer
Link copied to clipboard

A spherical dome around the map that is always rendered behind all other layers.

class SkyLayer(layerId: String) : Layer, SkyLayerDsl
SkyLayerDsl
Link copied to clipboard

This Interface contains all the functions that will be exposed to Koltin DSL.

Separated the DSL receiver class to this interface to avoid IDE code suggestion for property getters.

interface SkyLayerDsl
SymbolLayer
Link copied to clipboard

An icon or a text label.

class SymbolLayer(layerId: String, sourceId: String) : Layer, SymbolLayerDsl
SymbolLayerDsl
Link copied to clipboard

This Interface contains all the functions that will be exposed to Koltin DSL.

Separated the DSL receiver class to this interface to avoid IDE code suggestion for property getters.

interface SymbolLayerDsl

Functions

backgroundLayer
Link copied to clipboard

DSL function for BackgroundLayer.

fun backgroundLayer(layerId: String, block: BackgroundLayerDsl.() -> Unit): BackgroundLayer
circleLayer
Link copied to clipboard

DSL function for CircleLayer.

fun circleLayer(layerId: String, sourceId: String, block: CircleLayerDsl.() -> Unit): CircleLayer
fillExtrusionLayer
Link copied to clipboard

DSL function for FillExtrusionLayer.

fun fillExtrusionLayer(layerId: String, sourceId: String, block: FillExtrusionLayerDsl.() -> Unit): FillExtrusionLayer
fillLayer
Link copied to clipboard

DSL function for FillLayer.

fun fillLayer(layerId: String, sourceId: String, block: FillLayerDsl.() -> Unit): FillLayer
heatmapLayer
Link copied to clipboard

DSL function for HeatmapLayer.

fun heatmapLayer(layerId: String, sourceId: String, block: HeatmapLayerDsl.() -> Unit): HeatmapLayer
hillshadeLayer
Link copied to clipboard

DSL function for HillshadeLayer.

fun hillshadeLayer(layerId: String, sourceId: String, block: HillshadeLayerDsl.() -> Unit): HillshadeLayer
lineLayer
Link copied to clipboard

DSL function for LineLayer.

fun lineLayer(layerId: String, sourceId: String, block: LineLayerDsl.() -> Unit): LineLayer
locationIndicatorLayer
Link copied to clipboard

DSL function for LocationIndicatorLayer.

fun locationIndicatorLayer(layerId: String, block: LocationIndicatorLayerDsl.() -> Unit): LocationIndicatorLayer
rasterLayer
Link copied to clipboard

DSL function for RasterLayer.

fun rasterLayer(layerId: String, sourceId: String, block: RasterLayerDsl.() -> Unit): RasterLayer
skyLayer
Link copied to clipboard

DSL function for SkyLayer.

fun skyLayer(layerId: String, block: SkyLayerDsl.() -> Unit): SkyLayer
symbolLayer
Link copied to clipboard

DSL function for SymbolLayer.

fun symbolLayer(layerId: String, sourceId: String, block: SymbolLayerDsl.() -> Unit): SymbolLayer