I'm also interested in these answers.
For example, I have an image the size of 900x1700
So lets say top left is (0,0) and bottom right is (900x1700).
When I display this image, it looks so small. Which zoom number should I set it to, to get it to display the image at the original size?
And I want to set a marker at point 200,100. But when I do that with
L.marker([200,100]).addTo(map)
.bindPopup("Doma").openPopup();
It appears way off of where it's supposed to be.
For reference, I have set these:
var map = L.map('map').setView([0.000, 0.000], 10);
var imageBounds = [[0, 0], [900, 1700]];