Leaflet-Customelement/usage_examples.html
2024-04-21 18:48:39 +02:00

28 lines
699 B
HTML

<!doctype html>
<html>
<head>
<title>My Custom Viz-Element</title>
<meta charset="utf-8">
<!--
<link rel = "stylesheet" href = "http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css"/>
-->
<script src = "http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<script src="leaflet_widget.js"></script>
</head>
<body>
<leaf-let zoom="8" style="width:800px; height:600px; box-shadow: 10px 5px 5px black;">
{
"areas": {
"Potsdam": "blue",
"Erfurt": "yellow",
"Berlin": "red",
"Bernau": "orange"
},
"focus": "Berlin"
}
</leaf-let>
</body>
</html>