All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
15 lines
751 B
JavaScript
15 lines
751 B
JavaScript
/**
|
|
* @module ol/geom
|
|
*/
|
|
export { default as Circle } from './geom/Circle.js';
|
|
export { default as Geometry } from './geom/Geometry.js';
|
|
export { default as GeometryCollection } from './geom/GeometryCollection.js';
|
|
export { default as LinearRing } from './geom/LinearRing.js';
|
|
export { default as LineString } from './geom/LineString.js';
|
|
export { default as MultiLineString } from './geom/MultiLineString.js';
|
|
export { default as MultiPoint } from './geom/MultiPoint.js';
|
|
export { default as MultiPolygon } from './geom/MultiPolygon.js';
|
|
export { default as Point } from './geom/Point.js';
|
|
export { default as Polygon } from './geom/Polygon.js';
|
|
export { default as SimpleGeometry } from './geom/SimpleGeometry.js';
|
|
//# sourceMappingURL=geom.js.map
|