UNPKG

@vertigis/viewer-spec

Version:

VertiGIS Viewer Specification

16 lines (15 loc) 522 B
import type { ServiceModelProperties } from "./ServiceModelProperties.js"; /** * Configuration for the Analytics Service. */ export interface AnalyticsModelProperties extends ServiceModelProperties { /** * The URL used by VertiGIS Studio Analytics for tracking this application. */ url?: string; /** * Indicates whether the application should anonymize user information in * analytics. Default is `true`, meaning user information is anonymized. */ anonymizeUserInfo?: boolean; }