@vertigis/viewer-spec
Version:
VertiGIS Viewer Specification
17 lines (16 loc) • 482 B
TypeScript
import type { ModelProperties } from "./ModelProperties";
/**
* Configuration for the geoData service.
*/
export interface GeoDataModelProperties extends ModelProperties {
/**
* The geoDataServiceUrl for the upload service that needs to import the
* LPKX and FGDB files.
*/
geoDataServiceUrl?: string;
/**
* The displayServiceUrl for the upload service that needs to import the
* LPKX and FGDB files.
*/
displayServiceUrl?: string;
}