Type Alias OpenStreetMapOptions

OpenStreetMapOptions: LayerOptions & {
    imageryLayerOptions?: ImageryLayer.ConstructorOptions;
    maxLevel?: number;
    maxRenderingLevel?: number;
    minRenderingLevel?: number;
    opacity?: number;
    splitDirection?: string;
}

Type declaration

  • OptionalimageryLayerOptions?: ImageryLayer.ConstructorOptions

    can be used to forward options to the cesium ImageryLayer

  • OptionalmaxLevel?: number

    max level to load tiles at

    19
    
  • OptionalmaxRenderingLevel?: number

    configures the visible level in the rendered map. Maps to Openlayers maxZoom and Cesium maximumTerrainLevel

  • OptionalminRenderingLevel?: number

    configures the visible level in the rendered map. Maps to Openlayers minZoom and Cesium minimiumTerrainLevel

  • Optionalopacity?: number

    opacity between 0 and 1

    1
    
  • OptionalsplitDirection?: string

    either 'left' or 'right', if omitted none is applied