thematic-earth
Version:
HTML-based, whole-Earth thematic maps using locally hosted data layers
2 lines • 726 B
JavaScript
/* Copyright (c) 2023 Read Write Tools. Legal use subject to the Thematic Earth Software License Agreement. */
import IndexedCoordinates from'../ice/indexed-coordinates.class.js';import{Topology}from'../tae/topology.class.js';export default class GcsHoldingArea{constructor(){this.gcsFeaturePoints=[],this.gcsFeatureLines=[],this.gcsFeaturePolygons=[],this.indexedCoordinates=new IndexedCoordinates,this.topology=new Topology,Object.seal(this)}reinitialize(){this.gcsFeaturePoints=[],this.gcsFeatureLines=[],this.gcsFeaturePolygons=[],this.indexedCoordinates=new IndexedCoordinates,this.topology=new Topology}resetIndexedCoordinates(){this.indexedCoordinates=new IndexedCoordinates}resetTopology(){this.topology=new Topology}}