Rename _ol_style_Image_ to ImageStyle

This commit is contained in:
Tim Schaub
2018-01-11 13:29:59 -07:00
parent 66182f4cfb
commit 893d134e36
4 changed files with 31 additions and 31 deletions
+3 -3
View File
@@ -7,7 +7,7 @@ import {createCanvasContext2D} from '../dom.js';
import _ol_has_ from '../has.js';
import ImageState from '../ImageState.js';
import _ol_render_canvas_ from '../render/canvas.js';
import _ol_style_Image_ from '../style/Image.js';
import ImageStyle from '../style/Image.js';
/**
* @classdesc
@@ -126,7 +126,7 @@ var RegularShape = function(options) {
var rotateWithView = options.rotateWithView !== undefined ?
options.rotateWithView : false;
_ol_style_Image_.call(this, {
ImageStyle.call(this, {
opacity: 1,
rotateWithView: rotateWithView,
rotation: options.rotation !== undefined ? options.rotation : 0,
@@ -135,7 +135,7 @@ var RegularShape = function(options) {
});
};
inherits(RegularShape, _ol_style_Image_);
inherits(RegularShape, ImageStyle);
/**