Changes to be committed:

new file:   OpenHaystackIcon.png
	modified:   README.md
	new file:   index.html
	new file:   libs/images/layers-2x.png
	new file:   libs/images/layers.png
	new file:   libs/images/marker-icon-2x.png
	new file:   libs/images/marker-icon.png
	new file:   libs/images/marker-shadow.png
	new file:   libs/leaflet-src.esm.js
	new file:   libs/leaflet-src.esm.js.map
	new file:   libs/leaflet-src.js
	new file:   libs/leaflet-src.js.map
	new file:   libs/leaflet.css
	new file:   libs/leaflet.js
	new file:   libs/leaflet.js.map
	new file:   sampledata.json
	new file:   script.js
	new file:   style.css
This commit is contained in:
2024-12-30 00:59:30 -03:00
parent b7575f31ef
commit d8aa820fe4
18 changed files with 29792 additions and 2 deletions

20
index.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Map</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="libs/leaflet.css">
<link rel="shortcut icon" href="OpenHaystackIcon.png" type="image/x-icon">
<script src="libs/leaflet.js"></script>
</head>
<body>
<div id="map"></div>
</body>
<script src="script.js"></script>
</html>