I m using openlayers 3 in my project. I created a custom marker (icon) and i need to rotate marker with angle.
Is anybody tried this before? It is a critical part of my code and i couldnt figure it out.
Note: Not the map. just marker.
I m using openlayers 3 in my project. I created a custom marker (icon) and i need to rotate marker with angle.
Is anybody tried this before? It is a critical part of my code and i couldnt figure it out.
Note: Not the map. just marker.
Set up an overlay like in the icon example and apply CSS rotation to it (ie.
transform: rotate(120deg);
, add browser prefixed versions as needed). If you need this to be dynamic, adjust the property through JavaScript.In current versions of OpenLayers 3, you can use the
rotation
property ofol.style.Icon
like this: