diff options
author | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2020-04-15 14:50:50 +0200 |
---|---|---|
committer | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2020-04-15 14:50:50 +0200 |
commit | 88feb87009bdc301a9998f9c9952b4c847fd2ea1 (patch) | |
tree | 5ebf173b1c3146d92c9d53838d5875fee2ab8543 /htdocs | |
parent | fa39762e5ee6d45ad32a65ea3d3fe1c3fc5ea82e (diff) | |
download | lifomapserver-88feb87009bdc301a9998f9c9952b4c847fd2ea1.tar.gz lifomapserver-88feb87009bdc301a9998f9c9952b4c847fd2ea1.tar.bz2 lifomapserver-88feb87009bdc301a9998f9c9952b4c847fd2ea1.zip |
unify fetch scripts, add a lot more categories
Diffstat (limited to 'htdocs')
-rw-r--r-- | htdocs/mapscript.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/htdocs/mapscript.js b/htdocs/mapscript.js index 35c2547..8ec6a0b 100644 --- a/htdocs/mapscript.js +++ b/htdocs/mapscript.js @@ -127,6 +127,12 @@ load_tiles("Satellite (2019-05-04, wrong coords)", 'world-2019-05-04'); load_geojson("Cities", "./geojson/cities.json", "city", "red"); load_geojson("Stations", "./geojson/stations.json", "train", "blue"); load_geojson("Shops", "./geojson/shops.json", "shopping-cart", "green"); +load_geojson("Parks", "./geojson/parks.json", "tree", "darkgreen"); +load_geojson("Libraries", "./geojson/libraries.json", "book-open", "darkblue"); +load_geojson("CW Complexes", "./geojson/cw_complexes.json", "border-all", "black"); +load_geojson("Courts", "./geojson/courts.json", "balance-scale", "black"); +load_geojson("Waterway", "./geojson/waterway.json", "water", "darkblue"); +load_geojson("Train Depots", "./geojson/depots.json", "wrench", "violet"); L.control.scale().addTo(mymap); |