This repository is not maintained, and is not updated to work with Leaflet v2.0 either. If you like it, perhaps fork it, or reproduce it and credit the original project somehow :)
BTW - I have many other interesting repositories, so check them out at https://github.com/dagjomar
Markers that move with a parallax effect in relation to the base map.
See demos/examples at https://dagjomar.github.io/Leaflet.ParallaxMarker/.
The option property parallaxZoffset determines how much of a parallax effect you want.
A higher number, means more effect.
0 means it will be stationary on the map, as in no effect at all
The following example will stack a bunch of markers on top of each other in the z-axis Notice that the offset doubles by a factor of 2 for a nice realistic effect
var center = {lat: 63.417103647850126, lng: 10.403537750244142};
L.Marker.parallax(center,{ parallaxZoffset: 0}).addTo(map);
L.Marker.parallax(center,{ parallaxZoffset: 2}).addTo(map);
L.Marker.parallax(center,{ parallaxZoffset: 4}).addTo(map);
L.Marker.parallax(center,{ parallaxZoffset: 8}).addTo(map);
L.Marker.parallax(center,{ parallaxZoffset: 16}).addTo(map);
L.Marker.parallax(center,{ parallaxZoffset: 32}).addTo(map);
- Make things work smoother on zoom animation


