Leaflet center popup AND marker to the map

17,482

Solution 1

Using fitzpaddy's answer I was able to make this code which works and is much more flexible.

map.on('popupopen', function(e) {
    var px = map.project(e.target._popup._latlng); // find the pixel location on the map where the popup anchor is
    px.y -= e.target._popup._container.clientHeight/2; // find the height of the popup container, divide by 2, subtract from the Y axis of marker location
    map.panTo(map.unproject(px),{animate: true}); // pan to new center
});

Solution 2

Ciao Stefano,

This is untested pseudocode, but Leaflet project/unproject functions should provide assistance.

i.e;

// Obtain latlng from mouse event
var latlng;
// Convert latlng to pixels
var px = project(latlng);
// Add pixel height offset to converted pixels (screen origin is top left)
px.y -= mypopup.height/2
// Convert back to coordinates
latlng = unproject(px);
// Pan map
map.panTo(latlng,{animate: true});

This depends on zoom scale being constant during calculation, so you might be required to pan the map and then calculate the pan offset to update correctly (using animation, this will only be a gentle transition).

Good luck!

Solution 3

Here's an easy solution:

First you center the map to your marker.

map.setView(marker.latLng);

Then you open the popup.

var popup.openOn(map); = L.popup()
    .setLatLng(marker.latLng)
    .setContent(dynamic-content)
    .openOn(map);

Leaflet will automatically pan the map so the popup fits on the map. To make it look more beautiful you can add a margin-top to the popup with CSS.

Share:
17,482

Related videos on Youtube

stefcud
Author by

stefcud

Open Source Developer

Updated on June 26, 2022

Comments

  • stefcud
    stefcud almost 2 years

    I want center my marker on popup open.. and centering map not in marker latlng, but on center of marker and popup! The problem is that popup has dinamic content(loaded on click).

    The map size is full display size in a mobile device! I'm just used autoPanPadding option in popup but not sufficient

    Refer to follow picture:

    popup centered in leaflet map

  • Chris Dolphin
    Chris Dolphin almost 9 years
    Thanks so much! Was looking for an automatic answer like this. The other answers that calculated the popup height weren't working for me.
  • Dan Mandle
    Dan Mandle almost 8 years
    The problem with this solution is that it doesn't center the popup and marker. It will only make sure that the popup is inside of the visible map.
  • Titsjmen
    Titsjmen almost 8 years
    @DanMandle I think that if you would add top: 50%; translate: transformY(-50%); in the CSS it would actually be in the center of the map.