mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-12-08 21:26:14 +00:00
Signed-off-by: Jon Koops <jonkoops@gmail.com> Co-authored-by: Florian Bischof <design.falke@gmail.com>
28 lines
528 B
HTML
28 lines
528 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Leaflet debug page - Iframe</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0" />
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"leaflet": "../../dist/leaflet-src.js"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<style>
|
|
iframe {
|
|
position: absolute;
|
|
top: 50px;
|
|
left: 50px;
|
|
width: 500px;
|
|
height: 500px;
|
|
}
|
|
</style>
|
|
<iframe src="./iframe-map.html"></iframe>
|
|
</body>
|
|
</html>
|