A Pen by onezeroonezero on CodePen.
Created
August 21, 2018 08:38
-
-
Save onezeroonezero/be19595b9c4606b75fdfa679dba7373b to your computer and use it in GitHub Desktop.
OSM map pane
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
<div id="mapid"></div> |
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
var map = L.map('mapid').setView([51.505, -0.09], 13); | |
L.tileLayer('//maps.wikimedia.org/osm-intl/{z}/{x}/{y}.png', { | |
attribution: 'Wikimedia maps beta | Map data © <a href="http://openstreetmap.org/copyright">OpenStreetMap contributors</a>' | |
}).addTo(map); | |
// Создаем новый pane, который не вложен в mapPane => независимый от transform | |
var pane = map.createPane('fixed', document.getElementById('mapid')); | |
var marker = L.marker([51.5, -0.09]).addTo(map); | |
var marker2 = L.marker([51.51, -0.09]).addTo(map); | |
var popup = L.popup({ | |
pane: 'fixed', // Указываем нужный pane | |
className: 'popup-fixed', | |
autoPan: false, | |
}).setContent('First popup'); | |
var popup2 = L.popup({ | |
pane: 'fixed', // Указываем нужный pane | |
className: 'popup-fixed', | |
autoPan: false, | |
}).setContent('Second popup'); | |
marker.bindPopup(popup); | |
marker2.bindPopup(popup2); | |
// Остальное добиваем стилями | |
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
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script> |
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
html, | |
body { | |
height: 100%; | |
} | |
#mapid { | |
height: 100%; | |
} | |
.popup-fixed { | |
position: fixed; | |
top: auto; | |
bottom: 0 !important; | |
left: 0 !important; | |
right: 0 !important; | |
transform: none !important; | |
margin: 0; | |
border-radius: 0; | |
.leaflet-popup-tip-container { | |
display: none; | |
} | |
.leaflet-popup-content-wrapper { | |
border-radius: 0; | |
} | |
} |
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
<link href="https://unpkg.com/[email protected]/dist/leaflet.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment