nfc-web/stuff/index.html
2023-05-01 21:58:23 +03:00

85 lines
2.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<base target="_top">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>NFC Map</title>
<link rel="shortcut icon" type="image/x-icon" href="/images/favicon.ico" />
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css" integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI=" crossorigin=""/>
<link rel="stylesheet" href="map.css" />
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js" integrity="sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM=" crossorigin=""></script>
</head>
<body>
<script>
var nfcTags = {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": 51,
"geometry": {
"type": "Point",
"coordinates": [34.98055814491073, 32.70124645574966]
},
"properties": {
"title": "Entry 1"
},
},
{
"type": "Feature",
"id": 51,
"geometry": {
"type": "Point",
"coordinates": [34.981198952126796, 32.70106467439943]
},
"properties": {
"title": "Entry 2"
},
},
{
"type": "Feature",
"id": 51,
"geometry": {
"type": "Point",
"coordinates": [34.98210034203006, 32.7018532647309]
},
"properties": {
"title": "Entry 3"
},
},
{
"type": "Feature",
"id": 51,
"geometry": {
"type": "Point",
"coordinates": [34.981822380395634, 32.70227094745556]
},
"properties": {
"title": "Entry 4"
},
},
{
"type": "Feature",
"id": 51,
"geometry": {
"type": "Point",
"coordinates": [34.982425954297526, 32.70179311824144]
},
"properties": {
"title": "Entry 5"
},
}
]
};
</script>
<div id='map'></div>
<script src="map.js"></script>
</body>
</html>