mapserver/public/js/routes.js

9 lines
173 B
JavaScript
Raw Permalink 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
export default {
"/map/:layerId/:zoom/:lon/:lat": Map,
"/search/:query": Search
2019-09-01 13:06:47 +03:00
};