diff options
author | ywang <yw05@forksworld.de> | 2020-06-07 14:22:19 +0200 |
---|---|---|
committer | ywang <yw05@forksworld.de> | 2020-06-07 14:22:19 +0200 |
commit | 8eb50eddb9733b01f19d19a2bbb68bac9d64c8d4 (patch) | |
tree | fe643164c033480b804727819cd38738ca2957b6 /htdocs | |
parent | be16cf2f6e4548d3ba6f0554202c921b0c90b5a5 (diff) | |
download | lifomapserver-8eb50eddb9733b01f19d19a2bbb68bac9d64c8d4.tar.gz lifomapserver-8eb50eddb9733b01f19d19a2bbb68bac9d64c8d4.tar.bz2 lifomapserver-8eb50eddb9733b01f19d19a2bbb68bac9d64c8d4.zip |
Use unpkg when possible; update map tile generatorywang-patch
- Moved most sources to unpkg.
- Add scripts/getassets to fetch files that need to be hosted locally.
- Added a new map tile generator that uses symlinks instead of PHP.
Diffstat (limited to 'htdocs')
-rw-r--r-- | htdocs/index.html | 4 | ||||
-rw-r--r-- | htdocs/tiles/index.php | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/htdocs/index.html b/htdocs/index.html index 2d77687..acc5254 100644 --- a/htdocs/index.html +++ b/htdocs/index.html @@ -5,10 +5,10 @@ <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="fa/css/all.css"> - <link rel="stylesheet" href="awesomemarkers/leaflet.awesome-markers.css"> + <link rel="stylesheet" href="https://unpkg.com/leaflet.awesome-markers@2.0.5/dist/leaflet.awesome-markers.css" integrity="sha512-boUmbsf2HYx73lupnu+hMGOCttEtpt6FWQDcpHFmTIsY+lXPiP3iefbxrAvCNa6bt5TbdoO3zza2a2kxAm8HTg==" crossorigin=""> <link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css" integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==" crossorigin=""/> <script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js" integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew==" crossorigin=""></script> - <script src="awesomemarkers/leaflet.awesome-markers.js"></script> + <script src="https://unpkg.com/leaflet.awesome-markers@2.0.5/dist/leaflet.awesome-markers.js" integrity="sha512-Oj9plGLST4IMXFXDfqMdTP+gSInbodkyno117PSjo5R08eu6TdzY9WPnnwQZGx2O2lG/kN0MzQk95ulWsRFuLA==" crossorigin=""></script> <!-- Streets --> <script src='leafletjs/ctxtextpath.js'></script> <script src='leafletjs/L.LabelTextCollision.js'></script> diff --git a/htdocs/tiles/index.php b/htdocs/tiles/index.php deleted file mode 100644 index 62a2de0..0000000 --- a/htdocs/tiles/index.php +++ /dev/null @@ -1,3 +0,0 @@ -<?php - -?> |