Rename _ol_style_Style_ to Style

This commit is contained in:
Tim Schaub
2018-01-11 13:22:43 -07:00
parent 5f40eec148
commit 4f4c90fc20
80 changed files with 420 additions and 420 deletions

View File

@@ -7,7 +7,7 @@ import Stamen from '../src/ol/source/Stamen.js';
import VectorSource from '../src/ol/source/Vector.js';
import _ol_style_Fill_ from '../src/ol/style/Fill.js';
import _ol_style_Stroke_ from '../src/ol/style/Stroke.js';
import _ol_style_Style_ from '../src/ol/style/Style.js';
import Style from '../src/ol/style/Style.js';
/*
@@ -35,7 +35,7 @@ var styleFunction = function(feature) {
delta = 24 - delta;
}
var opacity = 0.75 * (1 - delta / 12);
return new _ol_style_Style_({
return new Style({
fill: new _ol_style_Fill_({
color: [0xff, 0xff, 0x33, opacity]
}),