SuberFu

Results 2 issues of SuberFu

You don't need resolution to get the aspect ratio. You can replace the following line... `float aspect = resolution.x / resolution.y;` with `float aspect = projectionMatrix[1][1] / projectionMatrix[0][0];` Since `projectionMatrix[1][1]...

I have an implementation of an SVG Icon Shadow and Icon Bounce function here that was based off an older release of you VectorMarker library. [VectorMarker](https://github.com/SuberFu/Leaflet.vector-markers/blob/101d2ec18c635ae9ec284ca57087d83aa2975c81/src/AltVectorMarker.js) I am, however, not...

enhancement