Remove remaining ol.foo notation from the source

This commit is contained in:
Tim Schaub
2018-05-07 21:00:03 -06:00
parent 34c1a6b9ba
commit 5b65336328
15 changed files with 34 additions and 30 deletions

View File

@@ -72,7 +72,7 @@ const RasterOperationType = {
/**
* @classdesc
* Events emitted by {@link ol.source.Raster} instances are instances of this
* Events emitted by {@link module:ol/source/Raster} instances are instances of this
* type.
*
* @constructor
@@ -152,7 +152,7 @@ const RasterSource = function(options) {
/**
* @private
* @type {ol.source.RasterOperationType}
* @type {module:ol/source/RasterOperationType}
*/
this.operationType_ = options.operationType !== undefined ?
options.operationType : RasterOperationType.PIXEL;
@@ -328,7 +328,7 @@ RasterSource.prototype.getImage = function(extent, resolution, pixelRatio, proje
const frameState = this.updateFrameState_(extent, resolution, projection);
this.requestedFrameState_ = frameState;
// check if we can't reuse the existing ol.ImageCanvas
// check if we can't reuse the existing ol/ImageCanvas
if (this.renderedImageCanvas_) {
const renderedResolution = this.renderedImageCanvas_.getResolution();
const renderedExtent = this.renderedImageCanvas_.getExtent();