Rename _ol_layer_Vector_ to VectorLayer

This commit is contained in:
Tim Schaub
2018-01-08 10:05:12 -07:00
parent 24dd0ca924
commit 45c6e43b42
90 changed files with 246 additions and 246 deletions

View File

@@ -22,7 +22,7 @@ import Polygon, {fromCircle, makeRegular} from '../geom/Polygon.js';
import DrawEventType from '../interaction/DrawEventType.js';
import _ol_interaction_Pointer_ from '../interaction/Pointer.js';
import _ol_interaction_Property_ from '../interaction/Property.js';
import _ol_layer_Vector_ from '../layer/Vector.js';
import VectorLayer from '../layer/Vector.js';
import _ol_source_Vector_ from '../source/Vector.js';
import _ol_style_Style_ from '../style/Style.js';
@@ -249,7 +249,7 @@ var Draw = function(options) {
* @type {ol.layer.Vector}
* @private
*/
this.overlay_ = new _ol_layer_Vector_({
this.overlay_ = new VectorLayer({
source: new _ol_source_Vector_({
useSpatialIndex: false,
wrapX: options.wrapX ? options.wrapX : false

View File

@@ -13,7 +13,7 @@ import Point from '../geom/Point.js';
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 _ol_layer_Vector_ from '../layer/Vector.js';
import VectorLayer from '../layer/Vector.js';
import _ol_source_Vector_ from '../source/Vector.js';
import _ol_style_Style_ from '../style/Style.js';
@@ -93,7 +93,7 @@ var _ol_interaction_Extent_ = function(opt_options) {
* @type {ol.layer.Vector}
* @private
*/
this.extentOverlay_ = new _ol_layer_Vector_({
this.extentOverlay_ = new VectorLayer({
source: new _ol_source_Vector_({
useSpatialIndex: false,
wrapX: !!opt_options.wrapX
@@ -108,7 +108,7 @@ var _ol_interaction_Extent_ = function(opt_options) {
* @type {ol.layer.Vector}
* @private
*/
this.vertexOverlay_ = new _ol_layer_Vector_({
this.vertexOverlay_ = new VectorLayer({
source: new _ol_source_Vector_({
useSpatialIndex: false,
wrapX: !!opt_options.wrapX

View File

@@ -18,7 +18,7 @@ import GeometryType from '../geom/GeometryType.js';
import Point from '../geom/Point.js';
import _ol_interaction_ModifyEventType_ from '../interaction/ModifyEventType.js';
import _ol_interaction_Pointer_ from '../interaction/Pointer.js';
import _ol_layer_Vector_ from '../layer/Vector.js';
import VectorLayer from '../layer/Vector.js';
import _ol_source_Vector_ from '../source/Vector.js';
import VectorEventType from '../source/VectorEventType.js';
import RBush from '../structs/RBush.js';
@@ -157,7 +157,7 @@ var _ol_interaction_Modify_ = function(options) {
* @type {ol.layer.Vector}
* @private
*/
this.overlay_ = new _ol_layer_Vector_({
this.overlay_ = new VectorLayer({
source: new _ol_source_Vector_({
useSpatialIndex: false,
wrapX: !!options.wrapX

View File

@@ -10,7 +10,7 @@ import _ol_events_condition_ from '../events/condition.js';
import {TRUE} from '../functions.js';
import GeometryType from '../geom/GeometryType.js';
import Interaction from '../interaction/Interaction.js';
import _ol_layer_Vector_ from '../layer/Vector.js';
import VectorLayer from '../layer/Vector.js';
import _ol_obj_ from '../obj.js';
import _ol_source_Vector_ from '../source/Vector.js';
import _ol_style_Style_ from '../style/Style.js';
@@ -87,7 +87,7 @@ var _ol_interaction_Select_ = function(opt_options) {
*/
this.hitTolerance_ = options.hitTolerance ? options.hitTolerance : 0;
var featureOverlay = new _ol_layer_Vector_({
var featureOverlay = new VectorLayer({
source: new _ol_source_Vector_({
useSpatialIndex: false,
features: options.features,