forked from SuperMap/iClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
62 lines (61 loc) · 1.81 KB
/
index.js
File metadata and controls
62 lines (61 loc) · 1.81 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* Copyright© 2000 - 2023 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 {
GeometryCollection,
GeometryCurve,
GeometryGeoText,
GeometryLinearRing,
GeometryLineString,
GeometryMultiLineString,
GeometryMultiPoint,
GeometryMultiPolygon,
GeometryPoint,
GeometryPolygon,
GeometryRectangle
} from './geometry/index';
import { inheritExt, mixinExt, StringExt, NumberExt, FunctionExt, ArrayExt } from './BaseTypes';
import { Bounds } from './Bounds';
import { Credential } from './Credential';
import { DateExt } from './Date';
import { Event } from './Event';
import { Events } from './Events';
import { Feature } from './Feature';
import { Geometry } from './Geometry';
import { LonLat } from './LonLat';
import { Pixel } from './Pixel';
import { Size } from './Size';
import {
Util as CommonUtil,
Browser,
INCHES_PER_UNIT,
METERS_PER_INCH,
DOTS_PER_INCH,
IS_GECKO
} from './Util';
import { Vector as FeatureVector } from './Vector';
export {
GeometryCollection,
GeometryCurve,
GeometryGeoText,
GeometryLinearRing,
GeometryLineString,
GeometryMultiLineString,
GeometryMultiPoint,
GeometryMultiPolygon,
GeometryPoint,
GeometryPolygon,
GeometryRectangle
};
export { inheritExt, mixinExt, DateExt, StringExt, NumberExt, FunctionExt, ArrayExt };
export { Bounds };
export { Credential };
export { Event };
export { Events };
export { Feature };
export { Geometry };
export { LonLat };
export { Pixel };
export { Size };
export { CommonUtil, Browser, INCHES_PER_UNIT, METERS_PER_INCH, DOTS_PER_INCH, IS_GECKO };
export { FeatureVector };