forked from SuperMap/iClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnamespace.js
More file actions
38 lines (35 loc) · 2.28 KB
/
namespace.js
File metadata and controls
38 lines (35 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* Copyright© 2000 - 2021 SuperMap Software Co.Ltd. All rights reserved.
* This program are made available under the terms of the Apache License, Version 2.0
* which accompanies this distribution and is available at http://www.apache.org/licenses/LICENSE-2.0.html.*/
import { MapVLayer } from './overlay';
import { AddressMatchService, DatasetService, DatasourceService, ProcessingService } from './services';
if (window && window.SuperMap) {
var SuperMap = (window.SuperMap = window.SuperMap || {});
SuperMap.REST = SuperMap.REST || {};
SuperMap.Layer.MapVLayer = MapVLayer;
SuperMap.REST.AddressMatchService = AddressMatchService;
SuperMap.REST.DatasetService = DatasetService;
SuperMap.REST.DatasourceService = DatasourceService;
SuperMap.REST.ProcessingService = ProcessingService;
}
export { ElasticSearch } from '@supermap/iclient-common/thirdparty/elasticsearch/ElasticSearch';
export { SecurityManager } from '@supermap/iclient-common/security/SecurityManager';
export { KernelDensityJobParameter } from '@supermap/iclient-common/iServer/KernelDensityJobParameter';
export { SingleObjectQueryJobsParameter } from '@supermap/iclient-common/iServer/SingleObjectQueryJobsParameter';
export { SummaryAttributesJobsParameter } from '@supermap/iclient-common/iServer/SummaryAttributesJobsParameter';
export { SummaryMeshJobParameter } from '@supermap/iclient-common/iServer/SummaryMeshJobParameter';
export { SummaryRegionJobParameter } from '@supermap/iclient-common/iServer/SummaryRegionJobParameter';
export { OverlayGeoJobParameter } from '@supermap/iclient-common/iServer/OverlayGeoJobParameter';
export { BuffersAnalystJobsParameter } from '@supermap/iclient-common/iServer/BuffersAnalystJobsParameter';
export { TopologyValidatorJobsParameter } from '@supermap/iclient-common/iServer/TopologyValidatorJobsParameter';
export { OutputSetting } from '@supermap/iclient-common/iServer/OutputSetting';
export { MappingParameters } from '@supermap/iclient-common/iServer/MappingParameters';
export { GeoCodingParameter } from '@supermap/iclient-common/iServer/GeoCodingParameter';
export { GeoDecodingParameter } from '@supermap/iclient-common/iServer/GeoDecodingParameter';
export * from './overlay';
export * from './services';
export { SuperMap };
/**
*@namespace SuperMap
*@category BaseTypes Namespace
*/