I have placed several markers on my map and added popups to them. The following code is executed in a loop and works fine:
L.marker([
item.Lat,
item.Long
]).bindPopup(item.count + ' projects').addTo(map);
The markers are shown and popups open when you click them. However, the popup opens always on the top side of the marker. Is there a way to open in at the bottom (or on any side) of the marker? The popup-options in the Leaflet documentation do not seem to provide an option to do so.