Created
November 8, 2022 00:06
-
-
Save tobwen/d0e363cce4bc2f7b25d38766ac42065f to your computer and use it in GitHub Desktop.
basemap.de Web Vektor - MapLibre GL Leaflet Demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>basemap.de Web Vektor - Leaflet Demo</title> | |
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" /> | |
<style> | |
body { | |
margin: 0; | |
padding: 0; | |
} | |
#map { | |
position: absolute; | |
top: 0; | |
bottom: 0; | |
width: 100%; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="map"></div> | |
<script src="https://unpkg.com/[email protected]/dist/maplibre-gl.js"></script> | |
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script> | |
<script src="https://unpkg.com/@maplibre/[email protected]/leaflet-maplibre-gl.js"></script> | |
<script> | |
var map = L.map('map', { | |
minZoom: 6, | |
maxZoom: 18, | |
}); | |
var gl = L.maplibreGL({ | |
style: 'https://sgx.geodatenzentrum.de/gdz_basemapde_vektor/styles/bm_web_col.json', | |
}).addTo(map); | |
map.setView([51, 10], 6); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment