1
0
forked from MTSR/mapserver
mapserver/static/js/main.js

17 lines
444 B
JavaScript
Raw Normal View History

2019-06-11 15:01:16 +02:00
import { getConfig } from './api.js';
2019-08-26 10:17:08 +02:00
//import { setup } from './map.js';
import routes from './routes.js';
import wsChannel from './WebSocketChannel.js';
import config from './config.js';
2019-06-11 15:01:16 +02:00
2019-08-26 10:17:08 +02:00
//TODO: migrate #/layer/zoom/lat/lon to #!/map/...
//TODO: migrate #/zoom/lat/lon to #!/map/...
getConfig().then(cfg => {
config.set(cfg);
wsChannel.connect();
m.route(document.getElementById("app"), "/map/0/13/0/0", routes);
//setup(cfg);
});