UNPKG

@vertigis/viewer-spec

Version:

VertiGIS Viewer Specification

15 lines (14 loc) 606 B
import type { LayerPresetProperties } from "@vertigis/arcgis-extensions/layer-preset/LayerPreset"; import type { ItemRef } from "../common/ItemRef.js"; import type { ComponentModelProperties } from "./ComponentModelProperties.js"; /** * Configuration for a layer presets component. */ export interface LayerPresetsModelProperties extends ComponentModelProperties { /** * A collection of layer presets. Each element can be a reference to an * existing 'layer-preset' item, or inline JSON defining a layer-preset * item. */ layerPresets?: (ItemRef | LayerPresetProperties)[]; }