Interaktive Karte zur Visualisierung von Bio_O_Ton Habitat-Eignungsflächen auf OpenStreetMap.
https://fkistner85.github.io/Bio_Ton/
Die Karte zeigt 64.321 Habitat-Flächen als Rasterkacheln-Overlay auf OpenStreetMap. Die aktuelle Kartenansicht (Position und Zoom) wird im URL-Hash gespeichert und kann direkt als Link geteilt werden.
docs/bio_ton_data.geojson — 64.321 Polygon-Features mit Habitat-ID und Flächenangabehttps://fkistner85.github.io/Bio_Ton/tiles/{z}/{x}/{y}.pnghttps://fkistner85.github.io/Bio_Ton/bio_ton_data.geojsonFür die Integration der Daten in uMap, Leaflet oder andere Kartenanwendungen siehe die Integrations-Seite.
var map = L.map('map', { preferCanvas: true }).setView([49.5, 7.5], 9);
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© OpenStreetMap contributors'
}).addTo(map);
// Bio Ton Habitat-Kacheln als Overlay laden
L.tileLayer('https://fkistner85.github.io/Bio_Ton/tiles/{z}/{x}/{y}.png', {
attribution: 'Bio Ton Habitat-Daten',
opacity: 0.7,
maxZoom: 19,
errorTileUrl: ''
}).addTo(map);
Bio_Ton/
├── docs/
│ ├── index.html # Karten-Viewer
│ ├── integration.html # Integrations-Anleitung
│ ├── bio_ton_data.geojson # Habitat-Daten (64.321 Features)
│ └── tiles/ # Tile-Verzeichnis
└── README.md
Bitte stellen Sie sicher, dass Ihre Tiles den Lizenzbedingungen der Quelldaten entsprechen. Bei OpenStreetMap-Daten: © OpenStreetMap contributors.