Fix setting of offset for popups.
This commit is contained in:
parent
b31a1e8be6
commit
30d2959c23
36
debug/tests/popup_offset.html
Normal file
36
debug/tests/popup_offset.html
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Leaflet debug page</title>
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="../../dist/leaflet.css" />
|
||||||
|
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="../css/screen.css" />
|
||||||
|
|
||||||
|
<script type="text/javascript" src="../../build/deps.js"></script>
|
||||||
|
<script src="../leaflet-include.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="map"></div>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
|
||||||
|
var osmUrl = 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
|
||||||
|
osmAttrib = '© <a href="http://openstreetmap.org/copyright">OpenStreetMap</a> contributors',
|
||||||
|
osm = L.tileLayer(osmUrl, {maxZoom: 18, attribution: osmAttrib});
|
||||||
|
|
||||||
|
var map = L.map('map')
|
||||||
|
.setView([50.5, 30.51], 15)
|
||||||
|
.addLayer(osm);
|
||||||
|
|
||||||
|
L.marker(map.getCenter())
|
||||||
|
.addTo(map)
|
||||||
|
.bindPopup('A pretty CSS3 popup. <br> Easily customizable.',{offset:[100,200]})
|
||||||
|
.openPopup();
|
||||||
|
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -127,7 +127,8 @@ L.Layer.include({
|
|||||||
|
|
||||||
_popupAnchor: function (layer) {
|
_popupAnchor: function (layer) {
|
||||||
var anchor = layer._getPopupAnchor ? layer._getPopupAnchor() : [0, 0];
|
var anchor = layer._getPopupAnchor ? layer._getPopupAnchor() : [0, 0];
|
||||||
return L.point(anchor).add(L.Popup.prototype.options.offset);
|
var offsetToAdd = layer._popup ? layer._popup.options.offset : L.Popup.prototype.options.offset;
|
||||||
|
return L.point(anchor).add(offsetToAdd);
|
||||||
},
|
},
|
||||||
|
|
||||||
_movePopup: function (e) {
|
_movePopup: function (e) {
|
||||||
|
Loading…
Reference in New Issue
Block a user