You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
698 B
16 lines
698 B
/**
|
|
* @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';
|