UNPKG

@ngageoint/mage.arcgis.service

Version:

A mage service plugin that synchronizes mage observations to a configured ArcGIS feature layer.

25 lines 655 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ObservationBins = void 0; const ArcObjects_1 = require("./ArcObjects"); /** * Contains the arc objects that either need to be added or updated to the arc server. */ class ObservationBins { /** * Constructor. */ constructor() { this.adds = new ArcObjects_1.ArcObjects(); this.updates = new ArcObjects_1.ArcObjects(); } /** * Clear the observations. */ clear() { this.adds.clear(); this.updates.clear(); } } exports.ObservationBins = ObservationBins; //# sourceMappingURL=ObservationBins.js.map