feat: use MapLibre GL + clicksports vector tiles (like held.de)
All checks were successful
Deploy Internet for Kids / Build & Push (push) Successful in 9s
Deploy Internet for Kids / Deploy (push) Successful in 6s
Deploy Internet for Kids / Health Check (push) Successful in 1s
Deploy Internet for Kids / Smoke Tests (push) Successful in 3s
Deploy Internet for Kids / IndexNow Ping (push) Successful in 7s
Deploy Internet for Kids / Promote to Latest (push) Successful in 2s
Deploy Internet for Kids / Rollback (push) Has been skipped
Deploy Internet for Kids / Audit (push) Successful in 1s
All checks were successful
Deploy Internet for Kids / Build & Push (push) Successful in 9s
Deploy Internet for Kids / Deploy (push) Successful in 6s
Deploy Internet for Kids / Health Check (push) Successful in 1s
Deploy Internet for Kids / Smoke Tests (push) Successful in 3s
Deploy Internet for Kids / IndexNow Ping (push) Successful in 7s
Deploy Internet for Kids / Promote to Latest (push) Successful in 2s
Deploy Internet for Kids / Rollback (push) Has been skipped
Deploy Internet for Kids / Audit (push) Successful in 1s
Self-hosted maplibre-gl.js, vector tiles from maps.clicksports.de style.json. No raster rendering needed — uses WebGL directly. Same approach as held.de dealer map. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,18 +1,20 @@
|
||||
{{ $lang := .Page.Language.Lang }}
|
||||
{{ $countries := hugo.Data.countries }}
|
||||
|
||||
<link rel="stylesheet" href="{{ "css/leaflet.min.css" | relURL }}" />
|
||||
<link rel="stylesheet" href="{{ "css/maplibre-gl.min.css" | relURL }}" />
|
||||
<style>
|
||||
.ifk-map-wrap { max-width: 100%; margin: 2rem 0; }
|
||||
.ifk-map-wrap h3 { text-align: center; margin-bottom: 0.5rem; font-size: 1.25rem; }
|
||||
.ifk-map-subtitle { text-align: center; color: #666; font-size: 0.85rem; margin-bottom: 1rem; }
|
||||
#ifk-world-map { width: 100%; height: 420px; border-radius: 8px; background: #f0f4f8; }
|
||||
#ifk-world-map { width: 100%; height: 420px; border-radius: 8px; }
|
||||
.ifk-map-legend {
|
||||
display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
|
||||
margin-top: 1rem; font-size: 0.8rem;
|
||||
}
|
||||
.ifk-map-legend-item { display: flex; align-items: center; gap: 0.35rem; }
|
||||
.ifk-map-legend-swatch { width: 14px; height: 14px; border-radius: 3px; border: 1px solid rgba(0,0,0,0.1); }
|
||||
.maplibregl-popup-content { font-size: 0.85rem; max-width: 260px; line-height: 1.4; }
|
||||
.maplibregl-popup-content strong { font-size: 0.95rem; }
|
||||
@media (max-width: 640px) { #ifk-world-map { height: 280px; } }
|
||||
</style>
|
||||
|
||||
@@ -29,7 +31,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="{{ "js/leaflet.min.js" | relURL }}"></script>
|
||||
<script src="{{ "js/maplibre-gl.min.js" | relURL }}"></script>
|
||||
<script src="{{ "js/topojson-client.min.js" | relURL }}"></script>
|
||||
<script>
|
||||
window.addEventListener('load', function() {
|
||||
@@ -45,47 +47,81 @@ window.addEventListener('load', function() {
|
||||
var byIsoNum = {};
|
||||
countries.forEach(function(c) { byIsoNum[c.isoNum] = c; });
|
||||
|
||||
var map = L.map('ifk-world-map', {
|
||||
center: [25, 10], zoom: 2, minZoom: 2, maxZoom: 6,
|
||||
scrollWheelZoom: false, zoomControl: true
|
||||
var map = new maplibregl.Map({
|
||||
container: 'ifk-world-map',
|
||||
style: 'https://maps.clicksports.de/styles/klokantech-basic/style.json',
|
||||
center: [10, 25],
|
||||
zoom: 1.5,
|
||||
minZoom: 1,
|
||||
maxZoom: 6,
|
||||
scrollZoom: false,
|
||||
attributionControl: true
|
||||
});
|
||||
|
||||
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||||
attribution: '© <a href="https://openstreetmap.org/copyright">OpenStreetMap</a>',
|
||||
maxZoom: 6
|
||||
}).addTo(map);
|
||||
map.addControl(new maplibregl.NavigationControl({ showCompass: false }), 'top-right');
|
||||
|
||||
fetch('{{ "data/countries-110m.json" | relURL }}')
|
||||
.then(function(r) { return r.json(); })
|
||||
.then(function(topo) {
|
||||
var geo = topojson.feature(topo, topo.objects.countries);
|
||||
L.geoJSON(geo, {
|
||||
style: function(feature) {
|
||||
var id = String(feature.id).padStart(3, '0');
|
||||
map.on('load', function() {
|
||||
fetch('{{ "data/countries-110m.json" | relURL }}')
|
||||
.then(function(r) { return r.json(); })
|
||||
.then(function(topo) {
|
||||
var geo = topojson.feature(topo, topo.objects.countries);
|
||||
|
||||
geo.features.forEach(function(f) {
|
||||
var id = String(f.id).padStart(3, '0');
|
||||
var c = byIsoNum[id];
|
||||
return {
|
||||
fillColor: c ? STATUS_COLORS[c.status] : '#e2e8f0',
|
||||
weight: 0.8,
|
||||
color: '#94a3b8',
|
||||
fillOpacity: c ? 0.75 : 0.3
|
||||
};
|
||||
},
|
||||
onEachFeature: function(feature, layer) {
|
||||
var id = String(feature.id).padStart(3, '0');
|
||||
f.properties.fillColor = c ? STATUS_COLORS[c.status] : '#e2e8f0';
|
||||
f.properties.fillOpacity = c ? 0.65 : 0.15;
|
||||
f.properties.isoNum = id;
|
||||
});
|
||||
|
||||
map.addSource('countries-choropleth', { type: 'geojson', data: geo });
|
||||
|
||||
map.addLayer({
|
||||
id: 'choropleth-fill',
|
||||
type: 'fill',
|
||||
source: 'countries-choropleth',
|
||||
paint: {
|
||||
'fill-color': ['get', 'fillColor'],
|
||||
'fill-opacity': ['get', 'fillOpacity']
|
||||
}
|
||||
});
|
||||
|
||||
map.addLayer({
|
||||
id: 'choropleth-outline',
|
||||
type: 'line',
|
||||
source: 'countries-choropleth',
|
||||
paint: {
|
||||
'line-color': '#94a3b8',
|
||||
'line-width': 0.6
|
||||
}
|
||||
});
|
||||
|
||||
var popup = new maplibregl.Popup({ closeButton: true, closeOnClick: false, maxWidth: '280px' });
|
||||
|
||||
map.on('mousemove', 'choropleth-fill', function(e) {
|
||||
var id = e.features[0].properties.isoNum;
|
||||
var c = byIsoNum[id];
|
||||
map.getCanvas().style.cursor = c ? 'pointer' : '';
|
||||
});
|
||||
|
||||
map.on('mouseleave', 'choropleth-fill', function() {
|
||||
map.getCanvas().style.cursor = '';
|
||||
});
|
||||
|
||||
map.on('click', 'choropleth-fill', function(e) {
|
||||
var id = e.features[0].properties.isoNum;
|
||||
var c = byIsoNum[id];
|
||||
if (!c) return;
|
||||
var loc = c[LANG] || c.en;
|
||||
var labels = STATUS_LABELS[LANG] || STATUS_LABELS.en;
|
||||
layer.bindPopup(
|
||||
popup.setLngLat(e.lngLat).setHTML(
|
||||
'<strong>' + c.flag + ' ' + loc.name + '</strong><br>' +
|
||||
'<em>' + loc.law + '</em><br>' +
|
||||
'<span style="color:' + STATUS_COLORS[c.status] + ';font-weight:600">' + labels[c.status] + '</span> (' + c.year + ')<br>' +
|
||||
loc.detail
|
||||
);
|
||||
layer.on('mouseover', function(e) { e.target.setStyle({ weight: 2, color: '#1e293b' }); });
|
||||
layer.on('mouseout', function(e) { e.target.setStyle({ weight: 0.8, color: '#94a3b8' }); });
|
||||
}
|
||||
}).addTo(map);
|
||||
});
|
||||
).addTo(map);
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
7
static/css/maplibre-gl.min.css
vendored
Normal file
7
static/css/maplibre-gl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
12
static/js/maplibre-gl.min.js
vendored
Normal file
12
static/js/maplibre-gl.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user