Leaflet.ImageOverlay.Rotated icon indicating copy to clipboard operation
Leaflet.ImageOverlay.Rotated copied to clipboard

Displays rotated/slanted image overlays in Leaflet

Results 4 Leaflet.ImageOverlay.Rotated issues
Sort by recently updated
recently updated
newest added

` var topleft = L.latLng(40.52256691873593, -3.7743186950683594), topright = L.latLng(40.5210255066156, -3.7734764814376835), bottomleft = L.latLng(40.52180437272552, -3.7768453359603886); var overlay = L.imageOverlay.rotated(".\common\5A09_NUM_FTG.tif", topleft, topright, bottomleft, { opacity: 0.4, interactive: true, attribution: "© Instituto Geográfico...

When using the lib like stated in the readme (see below), the following error occurs: ``` const overlay = Leaflet.imageOverlay.rotated("../office.png", topleft, topright, bottomleft, { opacity: 0.7, interactive: false }).addTo(mapRef) ```...

When using this plug-in on IE 11, the images are loaded on the wrong location without rotation. The reason was `0` image width and height values inside the `_reset` function....

I tried to include some Leaflet.ImageOverlay.Rotated layers in a feature group, but the L.FeatureGroup methods weren't working correctly. It appears this is due to not getting bounding data from the...