@vertigis/viewer-spec
Version:
VertiGIS Viewer Specification
11 lines (10 loc) • 370 B
TypeScript
import type { CoordinateModelProperties as CommonCoordinateModelProperties } from "../common/CoordinateModelProperties";
/**
* Configuration for the coordinate service.
*/
export interface CoordinateModelProperties extends CommonCoordinateModelProperties {
/**
* Whether the coordinates can be overridden by the end user.
*/
canOverride?: boolean;
}