This commit is contained in:
NN Solex 2023-05-01 21:58:23 +03:00
parent 33d02a4845
commit 20c0224bc8
53 changed files with 1329 additions and 60 deletions

View file

@ -0,0 +1,15 @@
<?xml version="1.0" ?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2">
<Document>
<Folder/>
</Document>
<wpt lat="32.70124169424201" lon="34.9805500394171">
<name>Journal Entry 1</name>
</wpt>
<wpt lat="32.699615286072735" lon="34.98304356695975">
<name>Journal Entry 2</name>
</wpt>
<wpt lat="32.70003059472479" lon="34.985554114475526">
<name>Journal Entry 3</name>
</wpt>
</kml>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" ?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2">
<Document>
<Folder>
<name>Blue Eyed Donkey</name>
<Placemark>
<name>Journal Entry 1</name>
<Point>
<coordinates>34.9805500394171,32.70124169424201</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Journal Entry 2</name>
<Point>
<coordinates>34.98304356695975,32.699615286072735</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Journal Entry 3</name>
<Point>
<coordinates>34.985554114475526,32.70003059472479</coordinates>
</Point>
</Placemark>
</Folder>
</Document>
</kml>

View file

@ -1,27 +1,66 @@
<!DOCTYPE html>
<html lang="english">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/theme/local.css" rel="stylesheet">
<base target="_top">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blue Eyed Donkey</title>
<link rel="shortcut icon" type="image/x-icon" href="/images/favicon.ico" />
<link rel="stylesheet" href="/theme/local.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css" integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI=" crossorigin=""/>
<style>
html, body { height: 100%; margin: 0; padding: 0; }
</style>
<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",
"title": "Blue Eyed Donkey",
"id" : "blue-eyed-donkey",
"features": [
{
"type": "Feature",
"id": "svbfh1049ck",
"geometry": {
"type": "Point",
"coordinates": [34.9805500394171, 32.70124169424201]
},
"properties": {
"title": "Journal Entry 1"
},
},
{
"type": "Feature",
"id": "svbfh0cc5fp",
"geometry": {
"type": "Point",
"coordinates": [34.98304356695975, 32.699615286072735]
},
"properties": {
"title": "Journal Entry 2"
},
},
{
"type": "Feature",
"id": "svbfh0geqrx",
"geometry": {
"type": "Point",
"coordinates": [34.985554114475526, 32.70003059472479]
},
"properties": {
"title": "Journal Entry 3"
},
},
]
};
<body id="index" class="home">
<section id="content">
<h2>Blue Eyed Donkey</h2>
<article class="hentry">
<header>
<h2 class="entry-title">
<a href="/svbfh1049ck" rel="bookmark">Entry 1</a>
</h2>
<span class="entry-summary"></span>
</header>
</article>
</section>
</script>
<div id='map'></div>
<script src="/theme/map.js"></script>
</body>
</html>

View file

@ -10,7 +10,10 @@
<ul>
<li><a href="/projects/blue-eyed-donkey">Blue Eyed Donkey</a></li>
<li><a href="/projects/testing">Testing</a></li>
</ul>
</body>
<script src="/theme/platform.js"></script>
<script src="/theme/geo.js"></script>
</html>

View file

@ -0,0 +1,9 @@
<?xml version="1.0" ?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2">
<Document>
<Folder/>
</Document>
<wpt lat="32.70194460092584" lon="34.972507850461874">
<name>Test</name>
</wpt>
</kml>

View file

@ -0,0 +1,14 @@
<?xml version="1.0" ?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2">
<Document>
<Folder>
<name>Testing</name>
<Placemark>
<name>Test</name>
<Point>
<coordinates>34.972507850461874,32.70194460092584</coordinates>
</Point>
</Placemark>
</Folder>
</Document>
</kml>

View file

@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="english">
<head>
<base target="_top">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Testing</title>
<link rel="shortcut icon" type="image/x-icon" href="/images/favicon.ico" />
<link rel="stylesheet" href="/theme/local.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css" integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI=" crossorigin=""/>
<style>
html, body { height: 100%; margin: 0; padding: 0; }
</style>
<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",
"title": "Testing",
"id" : "testing",
"features": [
{
"type": "Feature",
"id": "svbf5c4nwkr",
"geometry": {
"type": "Point",
"coordinates": [34.972507850461874, 32.70194460092584]
},
"properties": {
"title": "Test"
},
},
]
};
</script>
<div id='map'></div>
<script src="/theme/map.js"></script>
</body>
</html>