Blame view
src/main/resources/leafletmap/leafletmap.html
1 KB
2b6c492d4 add Leaflet |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
<!DOCTYPE html> <html> <head> <title>Leaflet Map</title> <meta charset="utf-8" /> <!-- only needed for mobile browsers: disable unwanted scaling and use full width --> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <!-- force the map to use the full available space --> <style> html, body, #map { height: 100%; width: 100%; padding: 0px; margin: 0px; } </style> <!-- for remote access of the Leaflet library <link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.3/dist/leaflet.css" /> <script src="https://unpkg.com/leaflet@1.0.3/dist/leaflet.js"></script> --> <link rel="stylesheet" href="leaflet/leaflet.css" /> <script src="leaflet/leaflet.js"></script> <script src="leaflet/leaflet.rotatedMarker.js"></script> <script src="leaflet-color-markers/leaflet-color-markers.js"></script> </head> <body> <div id="map"/> </body> </html> |