Blame view

src/main/resources/leafletmap/leafletmap.html 1.34 KB
2b6c492d4   lsagona   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
  <!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" />
9e952e84e   lsagona   add message clust...
25
26
27
      <link rel="stylesheet" href="Leaflet.markercluster-1.4.1/dist/MarkerCluster.css" />
      <link rel="stylesheet" href="Leaflet.markercluster-1.4.1/dist/MarkerCluster.Default.css" />
      
2b6c492d4   lsagona   add Leaflet
28
29
      <script src="leaflet/leaflet.js"></script>
      <script src="leaflet/leaflet.rotatedMarker.js"></script>
9e952e84e   lsagona   add message clust...
30
      <script src="Leaflet.markercluster-1.4.1/dist/leaflet.markercluster-src.js"></script>
79b001037   lsagona   heat map
31
      <script src="Leaflet.heat/dist/leaflet-heat.js"></script>
2b6c492d4   lsagona   add Leaflet
32
33
34
35
36
37
38
  
      <script src="leaflet-color-markers/leaflet-color-markers.js"></script>
  </head>
  <body>
      <div id="map"/>
  </body>
  </html>