LayerType

public enum LayerType : String, Codable

Layer rendering types

  • A filled polygon with an optional stroked border.

    Declaration

    Swift

    case fill = "fill"
  • A stroked line.

    Declaration

    Swift

    case line = "line"
  • An icon or a text label.

    Declaration

    Swift

    case symbol = "symbol"
  • A filled circle.

    Declaration

    Swift

    case circle = "circle"
  • A heatmap.

    Declaration

    Swift

    case heatmap = "heatmap"
  • An extruded (3D) polygon.

    Declaration

    Swift

    case fillExtrusion = "fill-extrusion"
  • Raster map textures such as satellite imagery.

    Declaration

    Swift

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

    Declaration

    Swift

    case hillshade = "hillshade"
  • The background color or pattern of the map.

    Declaration

    Swift

    case background = "background"
  • Layer representing the location indicator

    Declaration

    Swift

    case locationIndicator = "location-indicator"
  • sky

    Layer representing the sky

    Declaration

    Swift

    case sky = "sky"
  • Layer used for a 3D model

    Declaration

    Swift

    case model = "model"