-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (47 loc) · 2.45 KB
/
index.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, viewport-fit=cover, user-scalable=no"
/>
<meta
name="description"
content="The application is designed to display the location of companies on the map with the ability to group markers into clusters."
/>
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Map with Marker Clusters" />
<meta property="og:title" content="The application is designed to visualize markers on the map." />
<meta
property="og:description"
content="The application is designed to display the location of companies on the map with the ability to group markers into clusters."
/>
<meta property="og:url" content="https://sergeiown.github.io/Map_with_Marker_Clusters/" />
<meta property="og:image" content="./favicon/android-chrome-512x512.png" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:image:alt" content="Map with Marker Clusters logo" />
<title>Map with Marker Clusters</title>
<link rel="apple-touch-icon" sizes="180x180" href="./favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./favicon/favicon-16x16.png" />
<link rel="manifest" href="./favicon/site.webmanifest" />
<link rel="stylesheet" href="./leaflet/leaflet.css" />
<script src="./leaflet/leaflet.js"></script>
<link rel="stylesheet" href="./leaflet_markercluster/MarkerCluster.Default.css" />
<link rel="stylesheet" href="./leaflet_markercluster/MarkerCluster.css" />
<script src="./leaflet_markercluster/leaflet.markercluster.js"></script>
<script type="module" src="./js/app.js"></script>
</head>
<body>
<div id="map"></div>
<noscript>
<div style="text-align: center; padding: 20px">
<p>JavaScript is disabled in your browser.</p>
<p>Please enable JavaScript for this application to work properly.</p>
</div>
</noscript>
</body>
</html>