@vertigis/viewer-spec
Version:
VertiGIS Viewer Specification
19 lines (18 loc) • 693 B
TypeScript
import type { ItemRef } from "../common/ItemRef.js";
import type { LayerListModelProperties as CommonLayerListModelProperties } from "../common/LayerListModelProperties.js";
import type { ComponentModelProperties } from "./ComponentModelProperties.js";
/**
* @inheritdoc
*/
export interface LayerListModelProperties extends CommonLayerListModelProperties, ComponentModelProperties {
/**
* Whether or not the layer list will allow the drawing order of layers to
* be changed. Defaults to true.
*/
canReorder?: boolean;
/**
* A reference to a Menu containing layer actions (menu items that take a
* layer as context).
*/
layerActions?: ItemRef;
}