summaryrefslogtreecommitdiff
path: root/index.html
blob: 1c4ecddcfa2ad48901805427a4493c6dcc5e72c0 (plain)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html>
<head>
	
	<title>LinuxWorks Minetest Map (unofficial)</title>

	<meta charset="utf-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1.0">

	<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css" integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==" crossorigin=""/>
	<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js" integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew==" crossorigin=""></script>
</head>
	<body style="position: absolute; padding: 0px; margin: 0px; width:100%; height:100%;">
	<div id="mapid" style="width: 100%; height: 100%;"></div>
	<style>
	.leaflet-tooltip.city-names {
		background-color: transparent;
		border: transparent;
		box-shadow: none;
		
		font-weight: bold;
		font-size: 14pt;
		opacity:1.0;
		color: white;
		text-shadow: 0px 0px 5px black;
	}
	</style>
	<script>
		// Projection fix from: https://gis.stackexchange.com/questions/200865/leaflet-crs-simple-custom-scale
		var factorx = 1/256 * 4;
		var factory = factorx;
		var originx = 7000;
		var originy = 7000;
		var zoom_level_real = 6;
		
		L.CRS.pr = L.extend({}, L.CRS.Simple, {
			projection: L.Projection.LonLat,
			transformation: new L.Transformation(factorx, factorx * originx, -factory, factory * originy),
			
			scale: function(zoom) {
				return Math.pow(2, zoom);
			},

			zoom: function(scale) {
				return Math.log(scale) / Math.LN2;
			},

			distance: function(latlng1, latlng2) {
				var dx = latlng2.lng - latlng1.lng,
				dy = latlng2.lat - latlng1.lat;
		
				return Math.sqrt(dx * dx + dy * dy);
			},
			infinite: true
		});

		// Init map
		var mymap = L.map('mapid', {
		    crs: L.CRS.pr
		}).setView([0, 0], 6);

		var mapheight = 16384;
		var mapwidth = mapheight;
		var sw = mymap.unproject([0, 0], zoom_level_real);
		var ne = mymap.unproject([mapwidth, mapheight], zoom_level_real);
		var layerbounds = new L.LatLngBounds(sw, ne);
		
		function load_svg() {
			var xhttp_ps = new XMLHttpRequest();
			xhttp_ps.onreadystatechange = function() {
				if (this.readyState == 4) {
					if (this.status == 200) {
						var svgElement = document.createElementNS("http://www.w3.org/2000/svg", "svg");
						svgElement.setAttribute('xmlns', "http://www.w3.org/2000/svg");
						svgElement.setAttribute('viewBox', "0 0 16384 16384");
						svgElement.innerHTML = xhttp_ps.responseText;
						var svgElementBounds = [ [ 85, -180 ], [ -77, 127 ] ];
						var overlayMaps = {"SVG (broken)": L.svgOverlay(svgElement, svgElementBounds)};
						L.control.layers({}, overlayMaps).addTo(mymap);
					} else {
						alert("Error: Could not load SVG map layer.");
					}
				}
			};
			xhttp_ps.open("GET", "/manual2.svg", true);
			xhttp_ps.send();
		}

		function load_satellite() {
			var satellite = L.tileLayer('tiles/?id={id}&z={z}&x={x}&y={y}', {
				maxZoom: 8,
				maxNativeZoom: 6,
				minNativeZoom: 0,
				minZoom: 0,
				noWrap: true,
				attribution: 'Map data &copy; <a href="https://wiki.linux-forks.de/mediawiki/index.php/Maps">Linux-Forks</a>, ' +
					'All rights reserved, ',
				id: 'world-2020-04-09',
				tileSize: 256,
				zoomOffset: 0,
				opacity: 1.0,
				bounds: layerbounds
			});
			var baseMaps = {
			    "Satellite": satellite
			};
			var overlayMaps = {};
			// This is the only baseMap right now, so no need to show the selection dialog
			// L.control.layers(baseMaps, overlayMaps).addTo(mymap);
			satellite.addTo(mymap);
		}
		
		function load_geojson() {
			var xhttp_ps = new XMLHttpRequest();
			xhttp_ps.onreadystatechange = function() {
				if (this.readyState == 4) {
					if (this.status == 200) {
						var geojson = L.geoJSON(JSON.parse(xhttp_ps.responseText), {
						  onEachFeature: function (feature, layer) {
						    label = String(feature.properties.name)
						    layer.bindPopup(
						    	'<h1><a href="https://wiki.linux-forks.de/mediawiki/index.php/'+feature.properties.name+'">'+feature.properties.name+'</a> ('+feature.geometry.coordinates+')</h1>'+
						    	'<p><img style="width:100%" src="' + feature.properties.image + '"></p>' +
						    	'<p>'+feature.properties.description+'</p>'
						    	);
						    layer.bindTooltip(label, {permanent: true, direction: "center", className: "city-names"}).openTooltip();
						  }/*,
						  pointToLayer: function(feature,latlng){
							    label = String(feature.properties.name)
							    return new L.CircleMarker(latlng, {
							    	radius: 1,
							    }).bindTooltip(label, {permanent: true, direction: "center", opacity: 0.7}).openTooltip();
							    }*/
						}).addTo(mymap);
						L.control.layers({}, {"Cities": geojson}).addTo(mymap);
						geojson.addTo(mymap);
					} else {
						alert("Error: Could not load geojson map layer (cities).");
					}
				}
			};
			xhttp_ps.open("GET", "./geojson/cities.json", true);
			xhttp_ps.send();
		}

		load_satellite();
		//load_svg();
		load_geojson();
		
		L.control.scale().addTo(mymap);

		var popup = L.popup();

		function onMapClick(e) {
			popup
				.setLatLng(e.latlng)
				.setContent("You clicked the map at " + e.latlng.toString())
				.openOn(mymap);
		}

		mymap.on('click', onMapClick);
	</script>
	</body>
</html>