I\'m trying to include pictures in my leaflet popups, but the popup-size doesn\'t adjust to the picture size. I found a solution to this on github:
https://github.com/Le
Simply specifying maxWidth: "auto"
option on the popup seems enough…
layer.bindPopup(popupContent, {
maxWidth: "auto"
});
Demo: http://jsfiddle.net/3v7hd2vx/29/
EDIT
Unfortunately, if the image is not loaded yet in browser cache, the popup will open right away with default size, and adjust its size but not its position once the image is fully loaded and displayed. As a result, the popup is shifted and its arrow is misplaced compared to the marker it is bound to.
A simple workaround is to listen to the image "load"
event and to re-open the popup at that moment:
popupContent = document.createElement("img");
popupContent.onload = function () {
layer.openPopup();
};
popupContent.src = "path/to/image";
layer.bindPopup(popupContent, {
maxWidth: "auto"
});
Updated demo: http://jsfiddle.net/3v7hd2vx/32/
EDIT 2
Here is a more general solution: capture the <IMG>
's "load"
event on all Leaflet popups and force them to update()
every time.
document.querySelector(".leaflet-popup-pane").addEventListener("load", function (event) {
var tagName = event.target.tagName,
popup = map._popup; // Currently open popup, if any.
if (tagName === "IMG" && popup) {
popup.update();
}
}, true); // Capture the load event, because it does not bubble.
Demo: https://jsfiddle.net/3v7hd2vx/277/
Reference: Leaflet issue #5484 (comment)
To handle this as someone with limited coding understanding I finally got the following to work for me in the output of the qgis2web plugin when exporting a map forenter code here
the web from QGIS 3.10. I first made all my photos the same Width - in my case 400px.
Then in the index.html file I set a minWidth of 400px as shown below. Everything works fine.
var popupContent = '<table>\
<tr>\
<th scope="row"></th>\
<td>' + (feature.properties['Name'] !== null ? autolinker.link(feature.properties['Name'].toLocaleString()) : '') + '</td>\
</tr>\
<tr>\
<td colspan="2"><img src="' + feature.properties['RelPath'] + '"</td>\
</tr>\
</table>';
layer.bindPopup(popupContent, {maxHeight: 700, minWidth:400});
I had a similar issue with a Leaflet based map in Drupal where I needed to update the popup after loading the images and I managed to solve this based on @frankieandshadow 's answer.
Here is the code I came up with:
$(function() {
var mymap = Drupal.settings.leaflet[0].lMap;
mymap.on("popupopen", function(e) {
$(".leaflet-popup-content img:last").one("load", function() {
e.popup.update();
});
});
});
None of the before added answers worked for me, but I came upon a quite simple solution (the link of which I can no longer find). Just wrap your image in a div:
<div class='ppcont'><img src='yourimg.jpg' /></div>
And add a simple css rule that corresponds to the image width:
.ppcont{width:100px;}
Now the popup should load correctly and it solves the need for updates or closing/opening again.
There is an update function for popups (which the doc says is for just this purpose): http://leafletjs.com/reference.html#popup-update .
Also, an event for when a pop up is opened: http://leafletjs.com/reference.html#path-popupopen .
And the event passed to the event handler identifies the popup: http://leafletjs.com/reference.html#popup-event-popup
My pop up content was a bit more varied than just a simple image, but the width was, of course, still affected by any the load time for images in the content (and was ok once the image was in the browser cache).
So when I hit this problem, in summary what I did using jQuery:
function addpopup(mymarker, mycontent) {
var myid = "thismarker"; // or whatever
mymarker.bindPopup("<div id='"+myid+"'>" + mycontent + "</div>",
{maxWidth: "auto"});
mymap.on("popupopen", function(e){
$("#"+myid+" img").one("load", function(){ e.popup.update(); });
});
}