vizicities/src/vizicities.js

25 wiersze
688 B
JavaScript
Czysty Zwykły widok Historia

2016-02-11 22:38:15 +00:00
import World from './World';
2016-02-13 10:33:55 +00:00
import Controls from './controls/index';
import EnvironmentLayer from './layer/environment/EnvironmentLayer';
import ImageTileLayer from './layer/tile/ImageTileLayer';
import GeoJSONTileLayer from './layer/tile/GeoJSONTileLayer';
import TopoJSONTileLayer from './layer/tile/TopoJSONTileLayer';
import Point from './geo/Point';
import LatLon from './geo/LatLon';
2016-02-11 22:38:15 +00:00
const VIZI = {
2016-02-11 22:38:15 +00:00
version: '0.3',
// Public API
World: World,
2016-02-12 10:41:41 +00:00
Controls: Controls,
EnvironmentLayer: EnvironmentLayer,
ImageTileLayer: ImageTileLayer,
GeoJSONTileLayer: GeoJSONTileLayer,
TopoJSONTileLayer: TopoJSONTileLayer,
Point: Point,
LatLon: LatLon
};
export default VIZI;