Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
data class CircleLayerDescriptor(var id: String, var source: String, var sourceLayer: String? = null, var paint: CircleLayerPaint = CircleLayerPaint( fill = FillPaint(), stroke = StrokePaint(), circle = CirclePaint() ), var filter: Expression? = null) : VectorLayerDescriptor<CircleLayerPaint>
Link copied to clipboard
data class FillLayerDescriptor(var id: String, var source: String, var sourceLayer: String? = null, var paint: FillLayerPaint = FillLayerPaint( fill = FillPaint(), stroke = StrokePaint() ), var filter: Expression? = null) : VectorLayerDescriptor<FillLayerPaint>
Link copied to clipboard
class GenericLayerWrapper<P : LayerPaint>(val paint: P)
Link copied to clipboard
data class HeatmapLayerDescriptor(var id: String, var source: String, var sourceLayer: String? = null, var paint: HeatmapLayerPaint = HeatmapLayerPaint( heatmap = HeatmapPaint() ), var filter: Expression? = null) : VectorLayerDescriptor<HeatmapLayerPaint>
Link copied to clipboard
Link copied to clipboard
data class LineLayerDescriptor(var id: String, var source: String, var sourceLayer: String? = null, var paint: LineLayerPaint = LineLayerPaint( stroke = StrokePaint() ), var filter: Expression? = null) : VectorLayerDescriptor<LineLayerPaint>
Link copied to clipboard
data class ParticleLayerDescriptor(var id: String, var source: String, var quality: DataQuality = DataQuality.exact, var paint: ParticleLayerPaint = ParticleLayerPaint( sample = SamplePaint(), particle = ParticlePaint() )) : BitmapLayerDescriptor<ParticleLayerPaint>
Link copied to clipboard
data class RasterLayerDescriptor<RasterPaint>(var id: String, var source: String, var quality: DataQuality = DataQuality.exact, var paint: RasterLayerPaint = RasterLayerPaint( raster = RasterPaint() )) : BitmapLayerDescriptor<RasterLayerPaint>
Link copied to clipboard
data class SampleLayerDescriptor(var id: String, var source: String, var quality: DataQuality = DataQuality.exact, var paint: SampleLayerPaint = SampleLayerPaint( sample = SamplePaint() )) : BitmapLayerDescriptor<SampleLayerPaint>
Link copied to clipboard
class StyleJSON(val id: String, val type: StyleJSON.LayerType, val sourceID: String, val sourceLayer: String? = null)

Represents a layer style in the Mapbox Style Specification. Reference: https://docs.mapbox.com/style-spec/reference/layers/

Link copied to clipboard
data class SymbolLayerDescriptor(var id: String, var source: String, var sourceLayer: String? = null, var paint: SymbolLayerPaint = SymbolLayerPaint( icon = IconPaint(), text = emptyList() ), var filter: Expression? = null) : VectorLayerDescriptor<SymbolLayerPaint>
Link copied to clipboard
Link copied to clipboard