Rename _ol_source_Vector_ to VectorSource

This commit is contained in:
Tim Schaub
2018-01-08 10:06:23 -07:00
parent 45c6e43b42
commit ca6ea355e6
94 changed files with 279 additions and 279 deletions

View File

@@ -14,7 +14,7 @@ import {fromExtent as polygonFromExtent} from '../geom/Polygon.js';
import _ol_interaction_ExtentEventType_ from '../interaction/ExtentEventType.js';
import _ol_interaction_Pointer_ from '../interaction/Pointer.js';
import VectorLayer from '../layer/Vector.js';
import _ol_source_Vector_ from '../source/Vector.js';
import VectorSource from '../source/Vector.js';
import _ol_style_Style_ from '../style/Style.js';
/**
@@ -94,7 +94,7 @@ var _ol_interaction_Extent_ = function(opt_options) {
* @private
*/
this.extentOverlay_ = new VectorLayer({
source: new _ol_source_Vector_({
source: new VectorSource({
useSpatialIndex: false,
wrapX: !!opt_options.wrapX
}),
@@ -109,7 +109,7 @@ var _ol_interaction_Extent_ = function(opt_options) {
* @private
*/
this.vertexOverlay_ = new VectorLayer({
source: new _ol_source_Vector_({
source: new VectorSource({
useSpatialIndex: false,
wrapX: !!opt_options.wrapX
}),