Skip to content
Snippets Groups Projects
Commit 66660d3a authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

readme improvements

parent fe74997c
No related branches found
No related tags found
No related merge requests found
# Leaflet.Marker.rotate
# Leaflet Marker rotate
This is a plugin for [Leaflet](http://leafletjs.com/). It allows Markers
(map icons) to be rotated using a CSS transform. Rotation is set in degrees.
It is based on comments by users coomsie and runanet on
[Leaflet/issues/386](https://github.com/Leaflet/Leaflet/issues/386).
Features include an `iconAngle` marker option, and a `setIconAngle()` marker method.
## Usage
To set a marker's initial rotation:
var myMarker = L.marker(lat, lon, {
icon: L.icon(iconOptions),
iconAngle: 90, // Rotate 90 degrees clockwise.
});
To rotate an existing marker:
myMarker.setIconAngle(180); // Rotate 180 degrees.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment