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
+3 -3
View File
@@ -5,7 +5,7 @@ import _ol_events_ from '../events.js';
import {inherits} from '../index.js';
import BaseObject from '../Object.js';
import {createCanvasContext2D} from '../dom.js';
import _ol_layer_Vector_ from '../layer/Vector.js';
import VectorLayer from '../layer/Vector.js';
import {clamp} from '../math.js';
import _ol_obj_ from '../obj.js';
import RenderEventType from '../render/EventType.js';
@@ -54,7 +54,7 @@ var Heatmap = function(opt_options) {
delete baseOptions.blur;
delete baseOptions.shadow;
delete baseOptions.weight;
_ol_layer_Vector_.call(this, /** @type {olx.layer.VectorOptions} */ (baseOptions));
VectorLayer.call(this, /** @type {olx.layer.VectorOptions} */ (baseOptions));
/**
* @private
@@ -136,7 +136,7 @@ var Heatmap = function(opt_options) {
_ol_events_.listen(this, RenderEventType.RENDER, this.handleRender_, this);
};
inherits(Heatmap, _ol_layer_Vector_);
inherits(Heatmap, VectorLayer);
/**