mapserver/static/js/routes.js

14 lines
179 B
JavaScript
Raw Normal View History

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