vizicities/src/vizicities.js

58 wiersze
1.8 KiB
JavaScript
Czysty Zwykły widok Historia

import World, {world} from './World';
2016-02-13 10:33:55 +00:00
import Controls from './controls/index';
import Layer, {layer} from './layer/Layer';
import EnvironmentLayer, {environmentLayer} from './layer/environment/EnvironmentLayer';
import ImageTileLayer, {imageTileLayer} from './layer/tile/ImageTileLayer';
import GeoJSONTileLayer, {geoJSONTileLayer} from './layer/tile/GeoJSONTileLayer';
import TopoJSONTileLayer, {topoJSONTileLayer} from './layer/tile/TopoJSONTileLayer';
import GeoJSONLayer, {geoJSONLayer} from './layer/GeoJSONLayer';
import TopoJSONLayer, {topoJSONLayer} from './layer/TopoJSONLayer';
import PolygonLayer, {polygonLayer} from './layer/geometry/PolygonLayer';
2016-03-08 15:25:14 +00:00
import PolylineLayer, {polylineLayer} from './layer/geometry/PolylineLayer';
2016-03-09 10:07:31 +00:00
import PointLayer, {pointLayer} from './layer/geometry/PointLayer';
import Point, {point} from './geo/Point';
import LatLon, {latLon} from './geo/LatLon';
2016-02-11 22:38:15 +00:00
import PickingMaterial from './engine/PickingMaterial';
2016-03-13 16:59:38 +00:00
import Util from './util/index';
const VIZI = {
2016-02-11 22:38:15 +00:00
version: '0.3',
// Public API
World: World,
world: world,
2016-02-12 10:41:41 +00:00
Controls: Controls,
Layer: Layer,
layer: layer,
EnvironmentLayer: EnvironmentLayer,
environmentLayer: environmentLayer,
ImageTileLayer: ImageTileLayer,
imageTileLayer: imageTileLayer,
GeoJSONTileLayer: GeoJSONTileLayer,
geoJSONTileLayer: geoJSONTileLayer,
TopoJSONTileLayer: TopoJSONTileLayer,
topoJSONTileLayer: topoJSONTileLayer,
GeoJSONLayer: GeoJSONLayer,
geoJSONLayer: geoJSONLayer,
TopoJSONLayer: TopoJSONLayer,
topoJSONLayer: topoJSONLayer,
PolygonLayer: PolygonLayer,
polygonLayer: polygonLayer,
2016-03-08 15:25:14 +00:00
PolylineLayer: PolylineLayer,
polylineLayer: polylineLayer,
2016-03-09 10:07:31 +00:00
PointLayer: PointLayer,
pointLayer: pointLayer,
Point: Point,
point: point,
LatLon: LatLon,
2016-03-13 16:59:38 +00:00
latLon: latLon,
PickingMaterial: PickingMaterial,
2016-03-13 16:59:38 +00:00
Util: Util
};
export default VIZI;