Implement rotation for ol.style.RegularShape

This commit is contained in:
Bart van den Eijnden
2014-12-12 15:19:31 +01:00
parent 2c9fab22c8
commit 38dca7792c
3 changed files with 12 additions and 2 deletions

View File

@@ -133,7 +133,7 @@ ol.style.RegularShape = function(options) {
goog.base(this, {
opacity: 1,
rotateWithView: false,
rotation: 0,
rotation: goog.isDef(options.rotation) ? options.rotation : 0,
scale: 1,
snapToPixel: snapToPixel
});