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

16 lines
252 B
JavaScript
Raw Normal View History

2019-08-26 10:17:08 +02:00
import Map from './components/Map.js';
import Search from './components/Search.js';
2019-08-26 10:17:08 +02:00
var Home = {
view: function() {
return "Home"
}
}
export default {
"/": Home,
"/map/:layerId/:zoom/:lon/:lat": Map,
"/search/:query": Search
2019-08-26 10:17:08 +02:00
}