Fix formatting

This commit is contained in:
Markus Koch 2020-04-17 16:14:57 +02:00
parent 1e3c22c159
commit 7b65ef6ee4
2 changed files with 127 additions and 128 deletions

View File

@ -1,12 +1,9 @@
<!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="fa/css/all.css">
<link rel="stylesheet" href="awesomemarkers/leaflet.awesome-markers.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css" integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==" crossorigin=""/>
@ -20,13 +17,13 @@
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;
}
a.new {
color: red;
}

View File

@ -18,8 +18,8 @@ L.CRS.pr = L.extend({}, L.CRS.Simple, {
},
distance: function(latlng1, latlng2) {
var dx = latlng2.lng - latlng1.lng,
dy = latlng2.lat - latlng1.lat;
var dx = latlng2.lng - latlng1.lng
, dy = latlng2.lat - latlng1.lat;
return Math.sqrt(dx * dx + dy * dy);
},
@ -58,7 +58,8 @@ function load_svg(name, url, active=1) {
alert("Error: Could not load SVG map layer (" + name + ")");
}
}
};
}
;
xhttp_ps.open("GET", url, true);
xhttp_ps.send();
}
@ -70,8 +71,7 @@ function load_tiles(name, id) {
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, ',
attribution: 'Map data &copy; <a href="https://wiki.linux-forks.de/mediawiki/index.php/Maps">Linux-Forks</a>, ' + 'All rights reserved, ',
id: id,
tileSize: 256,
zoomOffset: 0,
@ -82,8 +82,6 @@ function load_tiles(name, id) {
return satellite;
}
function load_geojson(name, url, iconname, iconcolor, active=1) {
var xhttp_ps = new XMLHttpRequest();
xhttp_ps.onreadystatechange = function() {
@ -92,19 +90,25 @@ function load_geojson(name, url, iconname, iconcolor,active=1) {
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();
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.marker(latlng, {icon: L.AwesomeMarkers.icon({
return new L.marker(latlng,{
icon: L.AwesomeMarkers.icon({
icon: iconname,
markerColor: iconcolor
})}).bindTooltip(label, {permanent: false, direction: "center", opacity: 0.7}).openTooltip();
})
}).bindTooltip(label, {
permanent: false,
direction: "center",
opacity: 0.7
}).openTooltip();
}
});
layers.addOverlay(geojson, name);
@ -115,7 +119,8 @@ function load_geojson(name, url, iconname, iconcolor,active=1) {
alert("Error: Could not load geojson map layer (" + name + ").");
}
}
};
}
;
xhttp_ps.open("GET", url, true);
xhttp_ps.send();
}
@ -145,10 +150,7 @@ var baseballIcon = L.AwesomeMarkers.icon({
});
function onMapClick(e) {
popup
.setLatLng(e.latlng)
.setContent("You clicked the map at " + e.latlng.toString())
.openOn(mymap);
popup.setLatLng(e.latlng).setContent("You clicked the map at " + e.latlng.toString()).openOn(mymap);
}
mymap.on('click', onMapClick);