GraphicAttributeManager.js 378 Bytes

import { loadModules } from "esri-loader";
import mapManage from './towMapObjects';
export default class GraphicAttributeManager {
    static getInstance() {
        mapManage.graphicManager || (mapManage.graphicManager = new this());
    }
    constructor() {
        this.view = mapManage.mapView;
        this.initGraphicManager();
    }
    initGraphicManager() {

    };
}