Skip to content

Commit

Permalink
Fix setting of offset for popups.
Browse files Browse the repository at this point in the history
  • Loading branch information
snkashis authored and mourner committed Jul 1, 2015
1 parent a342585 commit 3687ed8
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
36 changes: 36 additions & 0 deletions debug/tests/popup_offset.html
Original file line number Diff line number Diff line change
@@ -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 = '&copy; <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>
3 changes: 2 additions & 1 deletion src/layer/Layer.Popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ L.Layer.include({

_popupAnchor: function (layer) {
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) {
Expand Down

0 comments on commit 3687ed8

Please sign in to comment.