blob: 523f2040f366c79400414b64a7fb63936ce1aa4d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | import '../../helpers/polyfills'
import clone from '../../helpers/clone'
import RoutesMap from '../../helpers/routes_map'
let routes = clone(window, "routes", true)
routes = JSON.parse(decodeURIComponent(routes))
var map = new RoutesMap('routes_map')
map.addRoutes(routes)
map.addRoutesLabels()
map.fitZoom()
 |