mapserver/static/js/routes.js

16 lines
255 B
JavaScript
Raw Normal View History

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