Skip to content

Instantly share code, notes, and snippets.

@onezeroonezero
Created August 21, 2018 08:38
Show Gist options
  • Save onezeroonezero/be19595b9c4606b75fdfa679dba7373b to your computer and use it in GitHub Desktop.
Save onezeroonezero/be19595b9c4606b75fdfa679dba7373b to your computer and use it in GitHub Desktop.
OSM map pane
<div id="mapid"></div>
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 &copy; <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);
// Остальное добиваем стилями
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
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;
}
}
<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