@vcmap/core
    Preparing search index...

    Function getTilingScheme

    • Gets the tiling scheme associated with this layerConfig

      Parameters

      • layerOptions: VcsObjectOptions & {
            activeOnStartup?: boolean;
            allowPicking?: boolean;
            copyright?: CopyrightOptions;
            datasourceId?: string;
            exclusiveGroups?: (string | symbol)[];
            extent?: ExtentOptions;
            featureProvider?:
                | AbstractFeatureProvider
                | AbstractAttributeProvider
                | AbstractFeatureProviderOptions
                | AbstractAttributeProviderOptions;
            headers?: Record<string, string>;
            hiddenObjectIds?: string[];
            ignoreMapLayerTypes?: boolean;
            mapNames?: string[];
            url?: string | Record<string, string>;
            zIndex?: number;
        } & {
            imageryLayerOptions?: ConstructorOptions;
            maxLevel?: number;
            maxRenderingLevel?: number;
            minLevel?: number;
            minRenderingLevel?: number;
            opacity?: number;
            splitDirection?: string;
            tilingSchema?: TilingScheme;
        } & TilingSchemeOptions
        • OptionalactiveOnStartup?: boolean

          if true the layer will be activated on initialization

        • OptionalallowPicking?: boolean

          whether to allow picking on this layer

        • Optionalcopyright?: CopyrightOptions
        • OptionaldatasourceId?: string

          Optional Id to synchronize with the vcPublisher Datasources. This can also be used to track a connection to other sources of data.

        • OptionalexclusiveGroups?: (string | symbol)[]
        • Optionalextent?: ExtentOptions

          metadata on the data extent of the layer.

        • OptionalfeatureProvider?:
              | AbstractFeatureProvider
              | AbstractAttributeProvider
              | AbstractFeatureProviderOptions
              | AbstractAttributeProviderOptions

          An optional feature or attribute provider to provide or augment features on click events.

        • Optionalheaders?: Record<string, string>

          Optional Request Headers which will be sent with each request.

        • OptionalhiddenObjectIds?: string[]

          an array of building ids which should be hidden if this layer is active

        • OptionalignoreMapLayerTypes?: boolean

          if true, the layer types of the map will be ignored when checking if the layer is supported

        • OptionalmapNames?: string[]

          the map names on which this layer is shown, all if empty or undefined

        • Optionalurl?: string | Record<string, string>
        • OptionalzIndex?: number

          zIndex of this layer

        • OptionalimageryLayerOptions?: ConstructorOptions

          can be used to forward options to the cesium ImageryLayer

        • OptionalmaxLevel?: number

          maxlevel the datasource can provide the data.

          18
          
        • OptionalmaxRenderingLevel?: number

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

        • OptionalminLevel?: number

          minLevel of the datasource (if not specified, calculated from extent)

          0
          
        • 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', none if omitted

        • OptionaltilingSchema?: TilingScheme

      Returns WebMercatorTilingScheme | GeographicTilingScheme