@@ -20,7 +20,7 @@ import _ol_interaction_ModifyEventType_ from '../interaction/ModifyEventType.js'
|
|||||||
import _ol_interaction_Pointer_ from '../interaction/Pointer.js';
|
import _ol_interaction_Pointer_ from '../interaction/Pointer.js';
|
||||||
import _ol_layer_Vector_ from '../layer/Vector.js';
|
import _ol_layer_Vector_ from '../layer/Vector.js';
|
||||||
import _ol_source_Vector_ from '../source/Vector.js';
|
import _ol_source_Vector_ from '../source/Vector.js';
|
||||||
import _ol_source_VectorEventType_ from '../source/VectorEventType.js';
|
import VectorEventType from '../source/VectorEventType.js';
|
||||||
import RBush from '../structs/RBush.js';
|
import RBush from '../structs/RBush.js';
|
||||||
import _ol_style_Style_ from '../style/Style.js';
|
import _ol_style_Style_ from '../style/Style.js';
|
||||||
|
|
||||||
@@ -196,9 +196,9 @@ var _ol_interaction_Modify_ = function(options) {
|
|||||||
if (options.source) {
|
if (options.source) {
|
||||||
this.source_ = options.source;
|
this.source_ = options.source;
|
||||||
features = new _ol_Collection_(this.source_.getFeatures());
|
features = new _ol_Collection_(this.source_.getFeatures());
|
||||||
_ol_events_.listen(this.source_, _ol_source_VectorEventType_.ADDFEATURE,
|
_ol_events_.listen(this.source_, VectorEventType.ADDFEATURE,
|
||||||
this.handleSourceAdd_, this);
|
this.handleSourceAdd_, this);
|
||||||
_ol_events_.listen(this.source_, _ol_source_VectorEventType_.REMOVEFEATURE,
|
_ol_events_.listen(this.source_, VectorEventType.REMOVEFEATURE,
|
||||||
this.handleSourceRemove_, this);
|
this.handleSourceRemove_, this);
|
||||||
} else {
|
} else {
|
||||||
features = options.features;
|
features = options.features;
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ import Polygon from '../geom/Polygon.js';
|
|||||||
import _ol_interaction_Pointer_ from '../interaction/Pointer.js';
|
import _ol_interaction_Pointer_ from '../interaction/Pointer.js';
|
||||||
import _ol_obj_ from '../obj.js';
|
import _ol_obj_ from '../obj.js';
|
||||||
import _ol_source_Vector_ from '../source/Vector.js';
|
import _ol_source_Vector_ from '../source/Vector.js';
|
||||||
import _ol_source_VectorEventType_ from '../source/VectorEventType.js';
|
import VectorEventType from '../source/VectorEventType.js';
|
||||||
import RBush from '../structs/RBush.js';
|
import RBush from '../structs/RBush.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -316,9 +316,9 @@ _ol_interaction_Snap_.prototype.setMap = function(map) {
|
|||||||
);
|
);
|
||||||
} else if (this.source_) {
|
} else if (this.source_) {
|
||||||
keys.push(
|
keys.push(
|
||||||
_ol_events_.listen(this.source_, _ol_source_VectorEventType_.ADDFEATURE,
|
_ol_events_.listen(this.source_, VectorEventType.ADDFEATURE,
|
||||||
this.handleFeatureAdd_, this),
|
this.handleFeatureAdd_, this),
|
||||||
_ol_events_.listen(this.source_, _ol_source_VectorEventType_.REMOVEFEATURE,
|
_ol_events_.listen(this.source_, VectorEventType.REMOVEFEATURE,
|
||||||
this.handleFeatureRemove_, this)
|
this.handleFeatureRemove_, this)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ import EventType from '../events/EventType.js';
|
|||||||
import {getIntersection} from '../extent.js';
|
import {getIntersection} from '../extent.js';
|
||||||
import _ol_layer_Base_ from '../layer/Base.js';
|
import _ol_layer_Base_ from '../layer/Base.js';
|
||||||
import _ol_obj_ from '../obj.js';
|
import _ol_obj_ from '../obj.js';
|
||||||
import _ol_source_State_ from '../source/State.js';
|
import SourceState from '../source/State.js';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -232,7 +232,7 @@ _ol_layer_Group_.prototype.getLayerStatesArray = function(opt_states) {
|
|||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
*/
|
*/
|
||||||
_ol_layer_Group_.prototype.getSourceState = function() {
|
_ol_layer_Group_.prototype.getSourceState = function() {
|
||||||
return _ol_source_State_.READY;
|
return SourceState.READY;
|
||||||
};
|
};
|
||||||
|
|
||||||
export default _ol_layer_Group_;
|
export default _ol_layer_Group_;
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import _ol_layer_Base_ from '../layer/Base.js';
|
|||||||
import _ol_layer_Property_ from '../layer/Property.js';
|
import _ol_layer_Property_ from '../layer/Property.js';
|
||||||
import _ol_obj_ from '../obj.js';
|
import _ol_obj_ from '../obj.js';
|
||||||
import RenderEventType from '../render/EventType.js';
|
import RenderEventType from '../render/EventType.js';
|
||||||
import _ol_source_State_ from '../source/State.js';
|
import SourceState from '../source/State.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @classdesc
|
* @classdesc
|
||||||
@@ -124,7 +124,7 @@ _ol_layer_Layer_.prototype.getSource = function() {
|
|||||||
*/
|
*/
|
||||||
_ol_layer_Layer_.prototype.getSourceState = function() {
|
_ol_layer_Layer_.prototype.getSourceState = function() {
|
||||||
var source = this.getSource();
|
var source = this.getSource();
|
||||||
return !source ? _ol_source_State_.UNDEFINED : source.getState();
|
return !source ? SourceState.UNDEFINED : source.getState();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import _ol_TileState_ from '../TileState.js';
|
|||||||
import _ol_events_ from '../events.js';
|
import _ol_events_ from '../events.js';
|
||||||
import EventType from '../events/EventType.js';
|
import EventType from '../events/EventType.js';
|
||||||
import {FALSE} from '../functions.js';
|
import {FALSE} from '../functions.js';
|
||||||
import _ol_source_State_ from '../source/State.js';
|
import SourceState from '../source/State.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @constructor
|
* @constructor
|
||||||
@@ -130,7 +130,7 @@ _ol_renderer_Layer_.prototype.loadImage = function(image) {
|
|||||||
*/
|
*/
|
||||||
_ol_renderer_Layer_.prototype.renderIfReadyAndVisible = function() {
|
_ol_renderer_Layer_.prototype.renderIfReadyAndVisible = function() {
|
||||||
var layer = this.getLayer();
|
var layer = this.getLayer();
|
||||||
if (layer.getVisible() && layer.getSourceState() == _ol_source_State_.READY) {
|
if (layer.getVisible() && layer.getSourceState() == SourceState.READY) {
|
||||||
this.changed();
|
this.changed();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ import _ol_render_canvas_ from '../../render/canvas.js';
|
|||||||
import _ol_render_canvas_Immediate_ from '../../render/canvas/Immediate.js';
|
import _ol_render_canvas_Immediate_ from '../../render/canvas/Immediate.js';
|
||||||
import _ol_renderer_Map_ from '../Map.js';
|
import _ol_renderer_Map_ from '../Map.js';
|
||||||
import RendererType from '../Type.js';
|
import RendererType from '../Type.js';
|
||||||
import _ol_source_State_ from '../../source/State.js';
|
import SourceState from '../../source/State.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @constructor
|
* @constructor
|
||||||
@@ -180,7 +180,7 @@ _ol_renderer_canvas_Map_.prototype.renderFrame = function(frameState) {
|
|||||||
layer = layerState.layer;
|
layer = layerState.layer;
|
||||||
layerRenderer = /** @type {ol.renderer.canvas.Layer} */ (this.getLayerRenderer(layer));
|
layerRenderer = /** @type {ol.renderer.canvas.Layer} */ (this.getLayerRenderer(layer));
|
||||||
if (!_ol_layer_Layer_.visibleAtResolution(layerState, viewResolution) ||
|
if (!_ol_layer_Layer_.visibleAtResolution(layerState, viewResolution) ||
|
||||||
layerState.sourceState != _ol_source_State_.READY) {
|
layerState.sourceState != SourceState.READY) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (layerRenderer.prepareFrame(frameState, layerState)) {
|
if (layerRenderer.prepareFrame(frameState, layerState)) {
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ import RenderEventType from '../../render/EventType.js';
|
|||||||
import _ol_render_webgl_Immediate_ from '../../render/webgl/Immediate.js';
|
import _ol_render_webgl_Immediate_ from '../../render/webgl/Immediate.js';
|
||||||
import _ol_renderer_Map_ from '../Map.js';
|
import _ol_renderer_Map_ from '../Map.js';
|
||||||
import RendererType from '../Type.js';
|
import RendererType from '../Type.js';
|
||||||
import _ol_source_State_ from '../../source/State.js';
|
import SourceState from '../../source/State.js';
|
||||||
import LRUCache from '../../structs/LRUCache.js';
|
import LRUCache from '../../structs/LRUCache.js';
|
||||||
import PriorityQueue from '../../structs/PriorityQueue.js';
|
import PriorityQueue from '../../structs/PriorityQueue.js';
|
||||||
import _ol_webgl_ from '../../webgl.js';
|
import _ol_webgl_ from '../../webgl.js';
|
||||||
@@ -450,7 +450,7 @@ _ol_renderer_webgl_Map_.prototype.renderFrame = function(frameState) {
|
|||||||
for (i = 0, ii = layerStatesArray.length; i < ii; ++i) {
|
for (i = 0, ii = layerStatesArray.length; i < ii; ++i) {
|
||||||
layerState = layerStatesArray[i];
|
layerState = layerStatesArray[i];
|
||||||
if (_ol_layer_Layer_.visibleAtResolution(layerState, viewResolution) &&
|
if (_ol_layer_Layer_.visibleAtResolution(layerState, viewResolution) &&
|
||||||
layerState.sourceState == _ol_source_State_.READY) {
|
layerState.sourceState == SourceState.READY) {
|
||||||
layerRenderer = /** @type {ol.renderer.webgl.Layer} */ (this.getLayerRenderer(layerState.layer));
|
layerRenderer = /** @type {ol.renderer.webgl.Layer} */ (this.getLayerRenderer(layerState.layer));
|
||||||
if (layerRenderer.prepareFrame(frameState, layerState, context)) {
|
if (layerRenderer.prepareFrame(frameState, layerState, context)) {
|
||||||
layerStatesToDraw.push(layerState);
|
layerStatesToDraw.push(layerState);
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import {createFromTileUrlFunctions} from '../tileurlfunction.js';
|
|||||||
import {applyTransform, intersects} from '../extent.js';
|
import {applyTransform, intersects} from '../extent.js';
|
||||||
import _ol_net_ from '../net.js';
|
import _ol_net_ from '../net.js';
|
||||||
import {get as getProjection, getTransformFromProjections} from '../proj.js';
|
import {get as getProjection, getTransformFromProjections} from '../proj.js';
|
||||||
import _ol_source_State_ from '../source/State.js';
|
import SourceState from '../source/State.js';
|
||||||
import _ol_source_TileImage_ from '../source/TileImage.js';
|
import _ol_source_TileImage_ from '../source/TileImage.js';
|
||||||
import _ol_tilecoord_ from '../tilecoord.js';
|
import _ol_tilecoord_ from '../tilecoord.js';
|
||||||
import _ol_tilegrid_ from '../tilegrid.js';
|
import _ol_tilegrid_ from '../tilegrid.js';
|
||||||
@@ -34,7 +34,7 @@ var _ol_source_BingMaps_ = function(options) {
|
|||||||
opaque: true,
|
opaque: true,
|
||||||
projection: getProjection('EPSG:3857'),
|
projection: getProjection('EPSG:3857'),
|
||||||
reprojectionErrorThreshold: options.reprojectionErrorThreshold,
|
reprojectionErrorThreshold: options.reprojectionErrorThreshold,
|
||||||
state: _ol_source_State_.LOADING,
|
state: SourceState.LOADING,
|
||||||
tileLoadFunction: options.tileLoadFunction,
|
tileLoadFunction: options.tileLoadFunction,
|
||||||
tilePixelRatio: this.hidpi_ ? 2 : 1,
|
tilePixelRatio: this.hidpi_ ? 2 : 1,
|
||||||
wrapX: options.wrapX !== undefined ? options.wrapX : true,
|
wrapX: options.wrapX !== undefined ? options.wrapX : true,
|
||||||
@@ -121,7 +121,7 @@ _ol_source_BingMaps_.prototype.handleImageryMetadataResponse = function(response
|
|||||||
response.authenticationResultCode != 'ValidCredentials' ||
|
response.authenticationResultCode != 'ValidCredentials' ||
|
||||||
response.resourceSets.length != 1 ||
|
response.resourceSets.length != 1 ||
|
||||||
response.resourceSets[0].resources.length != 1) {
|
response.resourceSets[0].resources.length != 1) {
|
||||||
this.setState(_ol_source_State_.ERROR);
|
this.setState(SourceState.ERROR);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -204,6 +204,6 @@ _ol_source_BingMaps_.prototype.handleImageryMetadataResponse = function(response
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setState(_ol_source_State_.READY);
|
this.setState(SourceState.READY);
|
||||||
};
|
};
|
||||||
export default _ol_source_BingMaps_;
|
export default _ol_source_BingMaps_;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
*/
|
*/
|
||||||
import {inherits} from '../index.js';
|
import {inherits} from '../index.js';
|
||||||
import _ol_obj_ from '../obj.js';
|
import _ol_obj_ from '../obj.js';
|
||||||
import _ol_source_State_ from '../source/State.js';
|
import SourceState from '../source/State.js';
|
||||||
import _ol_source_XYZ_ from '../source/XYZ.js';
|
import _ol_source_XYZ_ from '../source/XYZ.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -48,7 +48,7 @@ var _ol_source_CartoDB_ = function(options) {
|
|||||||
maxZoom: options.maxZoom !== undefined ? options.maxZoom : 18,
|
maxZoom: options.maxZoom !== undefined ? options.maxZoom : 18,
|
||||||
minZoom: options.minZoom,
|
minZoom: options.minZoom,
|
||||||
projection: options.projection,
|
projection: options.projection,
|
||||||
state: _ol_source_State_.LOADING,
|
state: SourceState.LOADING,
|
||||||
wrapX: options.wrapX
|
wrapX: options.wrapX
|
||||||
});
|
});
|
||||||
this.initializeMap_();
|
this.initializeMap_();
|
||||||
@@ -132,14 +132,14 @@ _ol_source_CartoDB_.prototype.handleInitResponse_ = function(paramHash, event) {
|
|||||||
try {
|
try {
|
||||||
response = /** @type {CartoDBLayerInfo} */(JSON.parse(client.responseText));
|
response = /** @type {CartoDBLayerInfo} */(JSON.parse(client.responseText));
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
this.setState(_ol_source_State_.ERROR);
|
this.setState(SourceState.ERROR);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.applyTemplate_(response);
|
this.applyTemplate_(response);
|
||||||
this.templateCache_[paramHash] = response;
|
this.templateCache_[paramHash] = response;
|
||||||
this.setState(_ol_source_State_.READY);
|
this.setState(SourceState.READY);
|
||||||
} else {
|
} else {
|
||||||
this.setState(_ol_source_State_.ERROR);
|
this.setState(SourceState.ERROR);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -149,7 +149,7 @@ _ol_source_CartoDB_.prototype.handleInitResponse_ = function(paramHash, event) {
|
|||||||
* @param {Event} event Event.
|
* @param {Event} event Event.
|
||||||
*/
|
*/
|
||||||
_ol_source_CartoDB_.prototype.handleInitError_ = function(event) {
|
_ol_source_CartoDB_.prototype.handleInitError_ = function(event) {
|
||||||
this.setState(_ol_source_State_.ERROR);
|
this.setState(SourceState.ERROR);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import Event from '../events/Event.js';
|
|||||||
import {equals} from '../extent.js';
|
import {equals} from '../extent.js';
|
||||||
import {equivalent} from '../proj.js';
|
import {equivalent} from '../proj.js';
|
||||||
import _ol_reproj_Image_ from '../reproj/Image.js';
|
import _ol_reproj_Image_ from '../reproj/Image.js';
|
||||||
import _ol_source_Source_ from '../source/Source.js';
|
import Source from '../source/Source.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @classdesc
|
* @classdesc
|
||||||
@@ -24,7 +24,7 @@ import _ol_source_Source_ from '../source/Source.js';
|
|||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
var _ol_source_Image_ = function(options) {
|
var _ol_source_Image_ = function(options) {
|
||||||
_ol_source_Source_.call(this, {
|
Source.call(this, {
|
||||||
attributions: options.attributions,
|
attributions: options.attributions,
|
||||||
extent: options.extent,
|
extent: options.extent,
|
||||||
projection: options.projection,
|
projection: options.projection,
|
||||||
@@ -53,7 +53,7 @@ var _ol_source_Image_ = function(options) {
|
|||||||
this.reprojectedRevision_ = 0;
|
this.reprojectedRevision_ = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
inherits(_ol_source_Image_, _ol_source_Source_);
|
inherits(_ol_source_Image_, Source);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import _ol_obj_ from '../obj.js';
|
|||||||
import {get as getProjection, transform} from '../proj.js';
|
import {get as getProjection, transform} from '../proj.js';
|
||||||
import _ol_reproj_ from '../reproj.js';
|
import _ol_reproj_ from '../reproj.js';
|
||||||
import _ol_source_Image_ from '../source/Image.js';
|
import _ol_source_Image_ from '../source/Image.js';
|
||||||
import _ol_source_WMSServerType_ from '../source/WMSServerType.js';
|
import WMSServerType from '../source/WMSServerType.js';
|
||||||
import _ol_string_ from '../string.js';
|
import _ol_string_ from '../string.js';
|
||||||
import _ol_uri_ from '../uri.js';
|
import _ol_uri_ from '../uri.js';
|
||||||
|
|
||||||
@@ -275,7 +275,7 @@ _ol_source_ImageWMS_.prototype.getRequestUrl_ = function(extent, size, pixelRati
|
|||||||
|
|
||||||
if (pixelRatio != 1) {
|
if (pixelRatio != 1) {
|
||||||
switch (this.serverType_) {
|
switch (this.serverType_) {
|
||||||
case _ol_source_WMSServerType_.GEOSERVER:
|
case WMSServerType.GEOSERVER:
|
||||||
var dpi = (90 * pixelRatio + 0.5) | 0;
|
var dpi = (90 * pixelRatio + 0.5) | 0;
|
||||||
if ('FORMAT_OPTIONS' in params) {
|
if ('FORMAT_OPTIONS' in params) {
|
||||||
params['FORMAT_OPTIONS'] += ';dpi:' + dpi;
|
params['FORMAT_OPTIONS'] += ';dpi:' + dpi;
|
||||||
@@ -283,11 +283,11 @@ _ol_source_ImageWMS_.prototype.getRequestUrl_ = function(extent, size, pixelRati
|
|||||||
params['FORMAT_OPTIONS'] = 'dpi:' + dpi;
|
params['FORMAT_OPTIONS'] = 'dpi:' + dpi;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case _ol_source_WMSServerType_.MAPSERVER:
|
case WMSServerType.MAPSERVER:
|
||||||
params['MAP_RESOLUTION'] = 90 * pixelRatio;
|
params['MAP_RESOLUTION'] = 90 * pixelRatio;
|
||||||
break;
|
break;
|
||||||
case _ol_source_WMSServerType_.CARMENTA_SERVER:
|
case WMSServerType.CARMENTA_SERVER:
|
||||||
case _ol_source_WMSServerType_.QGIS:
|
case WMSServerType.QGIS:
|
||||||
params['DPI'] = 90 * pixelRatio;
|
params['DPI'] = 90 * pixelRatio;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -16,8 +16,8 @@ import _ol_obj_ from '../obj.js';
|
|||||||
import _ol_renderer_canvas_ImageLayer_ from '../renderer/canvas/ImageLayer.js';
|
import _ol_renderer_canvas_ImageLayer_ from '../renderer/canvas/ImageLayer.js';
|
||||||
import _ol_renderer_canvas_TileLayer_ from '../renderer/canvas/TileLayer.js';
|
import _ol_renderer_canvas_TileLayer_ from '../renderer/canvas/TileLayer.js';
|
||||||
import _ol_source_Image_ from '../source/Image.js';
|
import _ol_source_Image_ from '../source/Image.js';
|
||||||
import _ol_source_RasterOperationType_ from '../source/RasterOperationType.js';
|
import RasterOperationType from '../source/RasterOperationType.js';
|
||||||
import _ol_source_State_ from '../source/State.js';
|
import SourceState from '../source/State.js';
|
||||||
import _ol_source_Tile_ from '../source/Tile.js';
|
import _ol_source_Tile_ from '../source/Tile.js';
|
||||||
import _ol_transform_ from '../transform.js';
|
import _ol_transform_ from '../transform.js';
|
||||||
|
|
||||||
@@ -46,7 +46,7 @@ var _ol_source_Raster_ = function(options) {
|
|||||||
* @type {ol.source.RasterOperationType}
|
* @type {ol.source.RasterOperationType}
|
||||||
*/
|
*/
|
||||||
this.operationType_ = options.operationType !== undefined ?
|
this.operationType_ = options.operationType !== undefined ?
|
||||||
options.operationType : _ol_source_RasterOperationType_.PIXEL;
|
options.operationType : RasterOperationType.PIXEL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @private
|
* @private
|
||||||
@@ -149,7 +149,7 @@ inherits(_ol_source_Raster_, _ol_source_Image_);
|
|||||||
_ol_source_Raster_.prototype.setOperation = function(operation, opt_lib) {
|
_ol_source_Raster_.prototype.setOperation = function(operation, opt_lib) {
|
||||||
this.worker_ = new Processor({
|
this.worker_ = new Processor({
|
||||||
operation: operation,
|
operation: operation,
|
||||||
imageOps: this.operationType_ === _ol_source_RasterOperationType_.IMAGE,
|
imageOps: this.operationType_ === RasterOperationType.IMAGE,
|
||||||
queue: 1,
|
queue: 1,
|
||||||
lib: opt_lib,
|
lib: opt_lib,
|
||||||
threads: this.threads_
|
threads: this.threads_
|
||||||
@@ -201,7 +201,7 @@ _ol_source_Raster_.prototype.allSourcesReady_ = function() {
|
|||||||
var source;
|
var source;
|
||||||
for (var i = 0, ii = this.renderers_.length; i < ii; ++i) {
|
for (var i = 0, ii = this.renderers_.length; i < ii; ++i) {
|
||||||
source = this.renderers_[i].getLayer().getSource();
|
source = this.renderers_[i].getLayer().getSource();
|
||||||
if (source.getState() !== _ol_source_State_.READY) {
|
if (source.getState() !== SourceState.READY) {
|
||||||
ready = false;
|
ready = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
import {inherits, nullFunction} from '../index.js';
|
import {inherits, nullFunction} from '../index.js';
|
||||||
import _ol_Object_ from '../Object.js';
|
import _ol_Object_ from '../Object.js';
|
||||||
import {get as getProjection} from '../proj.js';
|
import {get as getProjection} from '../proj.js';
|
||||||
import _ol_source_State_ from '../source/State.js';
|
import SourceState from '../source/State.js';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -21,7 +21,7 @@ import _ol_source_State_ from '../source/State.js';
|
|||||||
* @param {ol.SourceSourceOptions} options Source options.
|
* @param {ol.SourceSourceOptions} options Source options.
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
var _ol_source_Source_ = function(options) {
|
var Source = function(options) {
|
||||||
|
|
||||||
_ol_Object_.call(this);
|
_ol_Object_.call(this);
|
||||||
|
|
||||||
@@ -42,7 +42,7 @@ var _ol_source_Source_ = function(options) {
|
|||||||
* @type {ol.source.State}
|
* @type {ol.source.State}
|
||||||
*/
|
*/
|
||||||
this.state_ = options.state !== undefined ?
|
this.state_ = options.state !== undefined ?
|
||||||
options.state : _ol_source_State_.READY;
|
options.state : SourceState.READY;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @private
|
* @private
|
||||||
@@ -52,14 +52,14 @@ var _ol_source_Source_ = function(options) {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
inherits(_ol_source_Source_, _ol_Object_);
|
inherits(Source, _ol_Object_);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Turns the attributions option into an attributions function.
|
* Turns the attributions option into an attributions function.
|
||||||
* @param {ol.AttributionLike|undefined} attributionLike The attribution option.
|
* @param {ol.AttributionLike|undefined} attributionLike The attribution option.
|
||||||
* @return {?ol.Attribution} An attribution function (or null).
|
* @return {?ol.Attribution} An attribution function (or null).
|
||||||
*/
|
*/
|
||||||
_ol_source_Source_.prototype.adaptAttributions_ = function(attributionLike) {
|
Source.prototype.adaptAttributions_ = function(attributionLike) {
|
||||||
if (!attributionLike) {
|
if (!attributionLike) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@@ -89,14 +89,14 @@ _ol_source_Source_.prototype.adaptAttributions_ = function(attributionLike) {
|
|||||||
* @return {T|undefined} Callback result.
|
* @return {T|undefined} Callback result.
|
||||||
* @template T
|
* @template T
|
||||||
*/
|
*/
|
||||||
_ol_source_Source_.prototype.forEachFeatureAtCoordinate = nullFunction;
|
Source.prototype.forEachFeatureAtCoordinate = nullFunction;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the attribution function for the source.
|
* Get the attribution function for the source.
|
||||||
* @return {?ol.Attribution} Attribution function.
|
* @return {?ol.Attribution} Attribution function.
|
||||||
*/
|
*/
|
||||||
_ol_source_Source_.prototype.getAttributions = function() {
|
Source.prototype.getAttributions = function() {
|
||||||
return this.attributions_;
|
return this.attributions_;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -106,7 +106,7 @@ _ol_source_Source_.prototype.getAttributions = function() {
|
|||||||
* @return {ol.proj.Projection} Projection.
|
* @return {ol.proj.Projection} Projection.
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
_ol_source_Source_.prototype.getProjection = function() {
|
Source.prototype.getProjection = function() {
|
||||||
return this.projection_;
|
return this.projection_;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -115,7 +115,7 @@ _ol_source_Source_.prototype.getProjection = function() {
|
|||||||
* @abstract
|
* @abstract
|
||||||
* @return {Array.<number>|undefined} Resolutions.
|
* @return {Array.<number>|undefined} Resolutions.
|
||||||
*/
|
*/
|
||||||
_ol_source_Source_.prototype.getResolutions = function() {};
|
Source.prototype.getResolutions = function() {};
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -123,7 +123,7 @@ _ol_source_Source_.prototype.getResolutions = function() {};
|
|||||||
* @return {ol.source.State} State.
|
* @return {ol.source.State} State.
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
_ol_source_Source_.prototype.getState = function() {
|
Source.prototype.getState = function() {
|
||||||
return this.state_;
|
return this.state_;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -131,7 +131,7 @@ _ol_source_Source_.prototype.getState = function() {
|
|||||||
/**
|
/**
|
||||||
* @return {boolean|undefined} Wrap X.
|
* @return {boolean|undefined} Wrap X.
|
||||||
*/
|
*/
|
||||||
_ol_source_Source_.prototype.getWrapX = function() {
|
Source.prototype.getWrapX = function() {
|
||||||
return this.wrapX_;
|
return this.wrapX_;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -140,7 +140,7 @@ _ol_source_Source_.prototype.getWrapX = function() {
|
|||||||
* Refreshes the source and finally dispatches a 'change' event.
|
* Refreshes the source and finally dispatches a 'change' event.
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
_ol_source_Source_.prototype.refresh = function() {
|
Source.prototype.refresh = function() {
|
||||||
this.changed();
|
this.changed();
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -152,7 +152,7 @@ _ol_source_Source_.prototype.refresh = function() {
|
|||||||
* or `undefined`.
|
* or `undefined`.
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
_ol_source_Source_.prototype.setAttributions = function(attributions) {
|
Source.prototype.setAttributions = function(attributions) {
|
||||||
this.attributions_ = this.adaptAttributions_(attributions);
|
this.attributions_ = this.adaptAttributions_(attributions);
|
||||||
this.changed();
|
this.changed();
|
||||||
};
|
};
|
||||||
@@ -163,8 +163,8 @@ _ol_source_Source_.prototype.setAttributions = function(attributions) {
|
|||||||
* @param {ol.source.State} state State.
|
* @param {ol.source.State} state State.
|
||||||
* @protected
|
* @protected
|
||||||
*/
|
*/
|
||||||
_ol_source_Source_.prototype.setState = function(state) {
|
Source.prototype.setState = function(state) {
|
||||||
this.state_ = state;
|
this.state_ = state;
|
||||||
this.changed();
|
this.changed();
|
||||||
};
|
};
|
||||||
export default _ol_source_Source_;
|
export default Source;
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import _ol_TileState_ from '../TileState.js';
|
|||||||
import Event from '../events/Event.js';
|
import Event from '../events/Event.js';
|
||||||
import {equivalent} from '../proj.js';
|
import {equivalent} from '../proj.js';
|
||||||
import _ol_size_ from '../size.js';
|
import _ol_size_ from '../size.js';
|
||||||
import _ol_source_Source_ from '../source/Source.js';
|
import Source from '../source/Source.js';
|
||||||
import _ol_tilecoord_ from '../tilecoord.js';
|
import _ol_tilecoord_ from '../tilecoord.js';
|
||||||
import _ol_tilegrid_ from '../tilegrid.js';
|
import _ol_tilegrid_ from '../tilegrid.js';
|
||||||
|
|
||||||
@@ -25,7 +25,7 @@ import _ol_tilegrid_ from '../tilegrid.js';
|
|||||||
*/
|
*/
|
||||||
var _ol_source_Tile_ = function(options) {
|
var _ol_source_Tile_ = function(options) {
|
||||||
|
|
||||||
_ol_source_Source_.call(this, {
|
Source.call(this, {
|
||||||
attributions: options.attributions,
|
attributions: options.attributions,
|
||||||
extent: options.extent,
|
extent: options.extent,
|
||||||
projection: options.projection,
|
projection: options.projection,
|
||||||
@@ -78,7 +78,7 @@ var _ol_source_Tile_ = function(options) {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
inherits(_ol_source_Tile_, _ol_source_Source_);
|
inherits(_ol_source_Tile_, Source);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import {assert} from '../asserts.js';
|
|||||||
import {applyTransform, intersects} from '../extent.js';
|
import {applyTransform, intersects} from '../extent.js';
|
||||||
import _ol_net_ from '../net.js';
|
import _ol_net_ from '../net.js';
|
||||||
import {get as getProjection, getTransformFromProjections} from '../proj.js';
|
import {get as getProjection, getTransformFromProjections} from '../proj.js';
|
||||||
import _ol_source_State_ from '../source/State.js';
|
import SourceState from '../source/State.js';
|
||||||
import _ol_source_TileImage_ from '../source/TileImage.js';
|
import _ol_source_TileImage_ from '../source/TileImage.js';
|
||||||
import _ol_tilegrid_ from '../tilegrid.js';
|
import _ol_tilegrid_ from '../tilegrid.js';
|
||||||
|
|
||||||
@@ -40,7 +40,7 @@ var _ol_source_TileJSON_ = function(options) {
|
|||||||
crossOrigin: options.crossOrigin,
|
crossOrigin: options.crossOrigin,
|
||||||
projection: getProjection('EPSG:3857'),
|
projection: getProjection('EPSG:3857'),
|
||||||
reprojectionErrorThreshold: options.reprojectionErrorThreshold,
|
reprojectionErrorThreshold: options.reprojectionErrorThreshold,
|
||||||
state: _ol_source_State_.LOADING,
|
state: SourceState.LOADING,
|
||||||
tileLoadFunction: options.tileLoadFunction,
|
tileLoadFunction: options.tileLoadFunction,
|
||||||
wrapX: options.wrapX !== undefined ? options.wrapX : true,
|
wrapX: options.wrapX !== undefined ? options.wrapX : true,
|
||||||
transition: options.transition
|
transition: options.transition
|
||||||
@@ -148,7 +148,7 @@ _ol_source_TileJSON_.prototype.handleTileJSONResponse = function(tileJSON) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
this.tileJSON_ = tileJSON;
|
this.tileJSON_ = tileJSON;
|
||||||
this.setState(_ol_source_State_.READY);
|
this.setState(SourceState.READY);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -157,6 +157,6 @@ _ol_source_TileJSON_.prototype.handleTileJSONResponse = function(tileJSON) {
|
|||||||
* @protected
|
* @protected
|
||||||
*/
|
*/
|
||||||
_ol_source_TileJSON_.prototype.handleTileJSONError = function() {
|
_ol_source_TileJSON_.prototype.handleTileJSONError = function() {
|
||||||
this.setState(_ol_source_State_.ERROR);
|
this.setState(SourceState.ERROR);
|
||||||
};
|
};
|
||||||
export default _ol_source_TileJSON_;
|
export default _ol_source_TileJSON_;
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import EventType from '../events/EventType.js';
|
|||||||
import {applyTransform, intersects} from '../extent.js';
|
import {applyTransform, intersects} from '../extent.js';
|
||||||
import _ol_net_ from '../net.js';
|
import _ol_net_ from '../net.js';
|
||||||
import {get as getProjection, getTransformFromProjections} from '../proj.js';
|
import {get as getProjection, getTransformFromProjections} from '../proj.js';
|
||||||
import _ol_source_State_ from '../source/State.js';
|
import SourceState from '../source/State.js';
|
||||||
import _ol_source_Tile_ from '../source/Tile.js';
|
import _ol_source_Tile_ from '../source/Tile.js';
|
||||||
import _ol_tilecoord_ from '../tilecoord.js';
|
import _ol_tilecoord_ from '../tilecoord.js';
|
||||||
import _ol_tilegrid_ from '../tilegrid.js';
|
import _ol_tilegrid_ from '../tilegrid.js';
|
||||||
@@ -28,7 +28,7 @@ import _ol_tilegrid_ from '../tilegrid.js';
|
|||||||
var _ol_source_TileUTFGrid_ = function(options) {
|
var _ol_source_TileUTFGrid_ = function(options) {
|
||||||
_ol_source_Tile_.call(this, {
|
_ol_source_Tile_.call(this, {
|
||||||
projection: getProjection('EPSG:3857'),
|
projection: getProjection('EPSG:3857'),
|
||||||
state: _ol_source_State_.LOADING
|
state: SourceState.LOADING
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -155,7 +155,7 @@ _ol_source_TileUTFGrid_.prototype.forDataAtCoordinateAndResolution = function(
|
|||||||
* @protected
|
* @protected
|
||||||
*/
|
*/
|
||||||
_ol_source_TileUTFGrid_.prototype.handleTileJSONError = function() {
|
_ol_source_TileUTFGrid_.prototype.handleTileJSONError = function() {
|
||||||
this.setState(_ol_source_State_.ERROR);
|
this.setState(SourceState.ERROR);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -189,7 +189,7 @@ _ol_source_TileUTFGrid_.prototype.handleTileJSONResponse = function(tileJSON) {
|
|||||||
|
|
||||||
var grids = tileJSON.grids;
|
var grids = tileJSON.grids;
|
||||||
if (!grids) {
|
if (!grids) {
|
||||||
this.setState(_ol_source_State_.ERROR);
|
this.setState(SourceState.ERROR);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -207,7 +207,7 @@ _ol_source_TileUTFGrid_.prototype.handleTileJSONResponse = function(tileJSON) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setState(_ol_source_State_.READY);
|
this.setState(SourceState.READY);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ import {get as getProjection, transform, transformExtent} from '../proj.js';
|
|||||||
import _ol_reproj_ from '../reproj.js';
|
import _ol_reproj_ from '../reproj.js';
|
||||||
import _ol_size_ from '../size.js';
|
import _ol_size_ from '../size.js';
|
||||||
import _ol_source_TileImage_ from '../source/TileImage.js';
|
import _ol_source_TileImage_ from '../source/TileImage.js';
|
||||||
import _ol_source_WMSServerType_ from '../source/WMSServerType.js';
|
import WMSServerType from '../source/WMSServerType.js';
|
||||||
import _ol_tilecoord_ from '../tilecoord.js';
|
import _ol_tilecoord_ from '../tilecoord.js';
|
||||||
import _ol_string_ from '../string.js';
|
import _ol_string_ from '../string.js';
|
||||||
import _ol_uri_ from '../uri.js';
|
import _ol_uri_ from '../uri.js';
|
||||||
@@ -209,7 +209,7 @@ _ol_source_TileWMS_.prototype.getRequestUrl_ = function(tileCoord, tileSize, til
|
|||||||
|
|
||||||
if (pixelRatio != 1) {
|
if (pixelRatio != 1) {
|
||||||
switch (this.serverType_) {
|
switch (this.serverType_) {
|
||||||
case _ol_source_WMSServerType_.GEOSERVER:
|
case WMSServerType.GEOSERVER:
|
||||||
var dpi = (90 * pixelRatio + 0.5) | 0;
|
var dpi = (90 * pixelRatio + 0.5) | 0;
|
||||||
if ('FORMAT_OPTIONS' in params) {
|
if ('FORMAT_OPTIONS' in params) {
|
||||||
params['FORMAT_OPTIONS'] += ';dpi:' + dpi;
|
params['FORMAT_OPTIONS'] += ';dpi:' + dpi;
|
||||||
@@ -217,11 +217,11 @@ _ol_source_TileWMS_.prototype.getRequestUrl_ = function(tileCoord, tileSize, til
|
|||||||
params['FORMAT_OPTIONS'] = 'dpi:' + dpi;
|
params['FORMAT_OPTIONS'] = 'dpi:' + dpi;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case _ol_source_WMSServerType_.MAPSERVER:
|
case WMSServerType.MAPSERVER:
|
||||||
params['MAP_RESOLUTION'] = 90 * pixelRatio;
|
params['MAP_RESOLUTION'] = 90 * pixelRatio;
|
||||||
break;
|
break;
|
||||||
case _ol_source_WMSServerType_.CARMENTA_SERVER:
|
case WMSServerType.CARMENTA_SERVER:
|
||||||
case _ol_source_WMSServerType_.QGIS:
|
case WMSServerType.QGIS:
|
||||||
params['DPI'] = 90 * pixelRatio;
|
params['DPI'] = 90 * pixelRatio;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import {getUid, inherits} from '../index.js';
|
|||||||
import _ol_TileState_ from '../TileState.js';
|
import _ol_TileState_ from '../TileState.js';
|
||||||
import {expandUrl, createFromTemplates, nullTileUrlFunction} from '../tileurlfunction.js';
|
import {expandUrl, createFromTemplates, nullTileUrlFunction} from '../tileurlfunction.js';
|
||||||
import _ol_source_Tile_ from '../source/Tile.js';
|
import _ol_source_Tile_ from '../source/Tile.js';
|
||||||
import _ol_source_TileEventType_ from '../source/TileEventType.js';
|
import TileEventType from '../source/TileEventType.js';
|
||||||
import _ol_tilecoord_ from '../tilecoord.js';
|
import _ol_tilecoord_ from '../tilecoord.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -122,12 +122,12 @@ _ol_source_UrlTile_.prototype.handleTileChange = function(event) {
|
|||||||
var type;
|
var type;
|
||||||
if (tileState == _ol_TileState_.LOADING) {
|
if (tileState == _ol_TileState_.LOADING) {
|
||||||
this.tileLoadingKeys_[uid] = true;
|
this.tileLoadingKeys_[uid] = true;
|
||||||
type = _ol_source_TileEventType_.TILELOADSTART;
|
type = TileEventType.TILELOADSTART;
|
||||||
} else if (uid in this.tileLoadingKeys_) {
|
} else if (uid in this.tileLoadingKeys_) {
|
||||||
delete this.tileLoadingKeys_[uid];
|
delete this.tileLoadingKeys_[uid];
|
||||||
type = tileState == _ol_TileState_.ERROR ? _ol_source_TileEventType_.TILELOADERROR :
|
type = tileState == _ol_TileState_.ERROR ? TileEventType.TILELOADERROR :
|
||||||
(tileState == _ol_TileState_.LOADED || tileState == _ol_TileState_.ABORT) ?
|
(tileState == _ol_TileState_.LOADED || tileState == _ol_TileState_.ABORT) ?
|
||||||
_ol_source_TileEventType_.TILELOADEND : undefined;
|
TileEventType.TILELOADEND : undefined;
|
||||||
}
|
}
|
||||||
if (type != undefined) {
|
if (type != undefined) {
|
||||||
this.dispatchEvent(new _ol_source_Tile_.Event(type, tile));
|
this.dispatchEvent(new _ol_source_Tile_.Event(type, tile));
|
||||||
|
|||||||
@@ -16,9 +16,9 @@ import {xhr} from '../featureloader.js';
|
|||||||
import {TRUE} from '../functions.js';
|
import {TRUE} from '../functions.js';
|
||||||
import _ol_loadingstrategy_ from '../loadingstrategy.js';
|
import _ol_loadingstrategy_ from '../loadingstrategy.js';
|
||||||
import _ol_obj_ from '../obj.js';
|
import _ol_obj_ from '../obj.js';
|
||||||
import _ol_source_Source_ from '../source/Source.js';
|
import Source from '../source/Source.js';
|
||||||
import _ol_source_State_ from '../source/State.js';
|
import SourceState from '../source/State.js';
|
||||||
import _ol_source_VectorEventType_ from '../source/VectorEventType.js';
|
import VectorEventType from '../source/VectorEventType.js';
|
||||||
import RBush from '../structs/RBush.js';
|
import RBush from '../structs/RBush.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -37,10 +37,10 @@ var _ol_source_Vector_ = function(opt_options) {
|
|||||||
|
|
||||||
var options = opt_options || {};
|
var options = opt_options || {};
|
||||||
|
|
||||||
_ol_source_Source_.call(this, {
|
Source.call(this, {
|
||||||
attributions: options.attributions,
|
attributions: options.attributions,
|
||||||
projection: undefined,
|
projection: undefined,
|
||||||
state: _ol_source_State_.READY,
|
state: SourceState.READY,
|
||||||
wrapX: options.wrapX !== undefined ? options.wrapX : true
|
wrapX: options.wrapX !== undefined ? options.wrapX : true
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -149,7 +149,7 @@ var _ol_source_Vector_ = function(opt_options) {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
inherits(_ol_source_Vector_, _ol_source_Source_);
|
inherits(_ol_source_Vector_, Source);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -192,7 +192,7 @@ _ol_source_Vector_.prototype.addFeatureInternal = function(feature) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.dispatchEvent(
|
this.dispatchEvent(
|
||||||
new _ol_source_Vector_.Event(_ol_source_VectorEventType_.ADDFEATURE, feature));
|
new _ol_source_Vector_.Event(VectorEventType.ADDFEATURE, feature));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -287,7 +287,7 @@ _ol_source_Vector_.prototype.addFeaturesInternal = function(features) {
|
|||||||
|
|
||||||
for (i = 0, length = newFeatures.length; i < length; i++) {
|
for (i = 0, length = newFeatures.length; i < length; i++) {
|
||||||
this.dispatchEvent(new _ol_source_Vector_.Event(
|
this.dispatchEvent(new _ol_source_Vector_.Event(
|
||||||
_ol_source_VectorEventType_.ADDFEATURE, newFeatures[i]));
|
VectorEventType.ADDFEATURE, newFeatures[i]));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -298,7 +298,7 @@ _ol_source_Vector_.prototype.addFeaturesInternal = function(features) {
|
|||||||
*/
|
*/
|
||||||
_ol_source_Vector_.prototype.bindFeaturesCollection_ = function(collection) {
|
_ol_source_Vector_.prototype.bindFeaturesCollection_ = function(collection) {
|
||||||
var modifyingCollection = false;
|
var modifyingCollection = false;
|
||||||
_ol_events_.listen(this, _ol_source_VectorEventType_.ADDFEATURE,
|
_ol_events_.listen(this, VectorEventType.ADDFEATURE,
|
||||||
function(evt) {
|
function(evt) {
|
||||||
if (!modifyingCollection) {
|
if (!modifyingCollection) {
|
||||||
modifyingCollection = true;
|
modifyingCollection = true;
|
||||||
@@ -306,7 +306,7 @@ _ol_source_Vector_.prototype.bindFeaturesCollection_ = function(collection) {
|
|||||||
modifyingCollection = false;
|
modifyingCollection = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
_ol_events_.listen(this, _ol_source_VectorEventType_.REMOVEFEATURE,
|
_ol_events_.listen(this, VectorEventType.REMOVEFEATURE,
|
||||||
function(evt) {
|
function(evt) {
|
||||||
if (!modifyingCollection) {
|
if (!modifyingCollection) {
|
||||||
modifyingCollection = true;
|
modifyingCollection = true;
|
||||||
@@ -368,7 +368,7 @@ _ol_source_Vector_.prototype.clear = function(opt_fast) {
|
|||||||
this.loadedExtentsRtree_.clear();
|
this.loadedExtentsRtree_.clear();
|
||||||
this.nullGeometryFeatures_ = {};
|
this.nullGeometryFeatures_ = {};
|
||||||
|
|
||||||
var clearEvent = new _ol_source_Vector_.Event(_ol_source_VectorEventType_.CLEAR);
|
var clearEvent = new _ol_source_Vector_.Event(VectorEventType.CLEAR);
|
||||||
this.dispatchEvent(clearEvent);
|
this.dispatchEvent(clearEvent);
|
||||||
this.changed();
|
this.changed();
|
||||||
};
|
};
|
||||||
@@ -719,7 +719,7 @@ _ol_source_Vector_.prototype.handleFeatureChange_ = function(event) {
|
|||||||
}
|
}
|
||||||
this.changed();
|
this.changed();
|
||||||
this.dispatchEvent(new _ol_source_Vector_.Event(
|
this.dispatchEvent(new _ol_source_Vector_.Event(
|
||||||
_ol_source_VectorEventType_.CHANGEFEATURE, feature));
|
VectorEventType.CHANGEFEATURE, feature));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -817,7 +817,7 @@ _ol_source_Vector_.prototype.removeFeatureInternal = function(feature) {
|
|||||||
delete this.undefIdIndex_[featureKey];
|
delete this.undefIdIndex_[featureKey];
|
||||||
}
|
}
|
||||||
this.dispatchEvent(new _ol_source_Vector_.Event(
|
this.dispatchEvent(new _ol_source_Vector_.Event(
|
||||||
_ol_source_VectorEventType_.REMOVEFEATURE, feature));
|
VectorEventType.REMOVEFEATURE, feature));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import _ol_layer_Group_ from '../../../../src/ol/layer/Group.js';
|
|||||||
import _ol_layer_Layer_ from '../../../../src/ol/layer/Layer.js';
|
import _ol_layer_Layer_ from '../../../../src/ol/layer/Layer.js';
|
||||||
import _ol_obj_ from '../../../../src/ol/obj.js';
|
import _ol_obj_ from '../../../../src/ol/obj.js';
|
||||||
import _ol_renderer_Map_ from '../../../../src/ol/renderer/Map.js';
|
import _ol_renderer_Map_ from '../../../../src/ol/renderer/Map.js';
|
||||||
import _ol_source_Source_ from '../../../../src/ol/source/Source.js';
|
import Source from '../../../../src/ol/source/Source.js';
|
||||||
|
|
||||||
|
|
||||||
describe('ol.layer.Group', function() {
|
describe('ol.layer.Group', function() {
|
||||||
@@ -61,7 +61,7 @@ describe('ol.layer.Group', function() {
|
|||||||
var layer, group, listener;
|
var layer, group, listener;
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
layer = new _ol_layer_Layer_({
|
layer = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: 'EPSG:4326'
|
projection: 'EPSG:4326'
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
@@ -100,7 +100,7 @@ describe('ol.layer.Group', function() {
|
|||||||
var layer, group, listener;
|
var layer, group, listener;
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
layer = new _ol_layer_Layer_({
|
layer = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: 'EPSG:4326'
|
projection: 'EPSG:4326'
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
@@ -138,7 +138,7 @@ describe('ol.layer.Group', function() {
|
|||||||
|
|
||||||
it('accepts options', function() {
|
it('accepts options', function() {
|
||||||
var layer = new _ol_layer_Layer_({
|
var layer = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: 'EPSG:4326'
|
projection: 'EPSG:4326'
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
@@ -176,7 +176,7 @@ describe('ol.layer.Group', function() {
|
|||||||
|
|
||||||
it('accepts an extent option', function() {
|
it('accepts an extent option', function() {
|
||||||
var layer = new _ol_layer_Layer_({
|
var layer = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: 'EPSG:4326'
|
projection: 'EPSG:4326'
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
@@ -311,7 +311,7 @@ describe('ol.layer.Group', function() {
|
|||||||
|
|
||||||
it('sets layers property', function() {
|
it('sets layers property', function() {
|
||||||
var layer = new _ol_layer_Layer_({
|
var layer = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: 'EPSG:4326'
|
projection: 'EPSG:4326'
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
@@ -342,12 +342,12 @@ describe('ol.layer.Group', function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
var layer1 = new _ol_layer_Layer_({
|
var layer1 = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: 'EPSG:4326'
|
projection: 'EPSG:4326'
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
var layer2 = new _ol_layer_Layer_({
|
var layer2 = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: 'EPSG:4326'
|
projection: 'EPSG:4326'
|
||||||
}),
|
}),
|
||||||
opacity: 0.5,
|
opacity: 0.5,
|
||||||
@@ -356,7 +356,7 @@ describe('ol.layer.Group', function() {
|
|||||||
minResolution: 0.25
|
minResolution: 0.25
|
||||||
});
|
});
|
||||||
var layer3 = new _ol_layer_Layer_({
|
var layer3 = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: 'EPSG:4326'
|
projection: 'EPSG:4326'
|
||||||
}),
|
}),
|
||||||
extent: [-5, -2, 5, 2]
|
extent: [-5, -2, 5, 2]
|
||||||
@@ -461,14 +461,14 @@ describe('ol.layer.Group', function() {
|
|||||||
|
|
||||||
it('orders layer with higher Z-index on top', function() {
|
it('orders layer with higher Z-index on top', function() {
|
||||||
var layer10 = new _ol_layer_Layer_({
|
var layer10 = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: 'EPSG:4326'
|
projection: 'EPSG:4326'
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
layer10.setZIndex(10);
|
layer10.setZIndex(10);
|
||||||
|
|
||||||
var layerM1 = new _ol_layer_Layer_({
|
var layerM1 = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: 'EPSG:4326'
|
projection: 'EPSG:4326'
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import _ol_Map_ from '../../../../src/ol/Map.js';
|
|||||||
import _ol_layer_Layer_ from '../../../../src/ol/layer/Layer.js';
|
import _ol_layer_Layer_ from '../../../../src/ol/layer/Layer.js';
|
||||||
import {get as getProjection} from '../../../../src/ol/proj.js';
|
import {get as getProjection} from '../../../../src/ol/proj.js';
|
||||||
import _ol_render_Event_ from '../../../../src/ol/render/Event.js';
|
import _ol_render_Event_ from '../../../../src/ol/render/Event.js';
|
||||||
import _ol_source_Source_ from '../../../../src/ol/source/Source.js';
|
import Source from '../../../../src/ol/source/Source.js';
|
||||||
|
|
||||||
|
|
||||||
describe('ol.layer.Layer', function() {
|
describe('ol.layer.Layer', function() {
|
||||||
@@ -14,7 +14,7 @@ describe('ol.layer.Layer', function() {
|
|||||||
|
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
layer = new _ol_layer_Layer_({
|
layer = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: getProjection('EPSG:4326')
|
projection: getProjection('EPSG:4326')
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
@@ -64,7 +64,7 @@ describe('ol.layer.Layer', function() {
|
|||||||
|
|
||||||
it('accepts options', function() {
|
it('accepts options', function() {
|
||||||
var layer = new _ol_layer_Layer_({
|
var layer = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: getProjection('EPSG:4326')
|
projection: getProjection('EPSG:4326')
|
||||||
}),
|
}),
|
||||||
opacity: 0.5,
|
opacity: 0.5,
|
||||||
@@ -102,7 +102,7 @@ describe('ol.layer.Layer', function() {
|
|||||||
|
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
layer = new _ol_layer_Layer_({
|
layer = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: getProjection('EPSG:4326')
|
projection: getProjection('EPSG:4326')
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
@@ -152,7 +152,7 @@ describe('ol.layer.Layer', function() {
|
|||||||
|
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
layer = new _ol_layer_Layer_({
|
layer = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: getProjection('EPSG:4326')
|
projection: getProjection('EPSG:4326')
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
@@ -216,7 +216,7 @@ describe('ol.layer.Layer', function() {
|
|||||||
describe('#getSource', function() {
|
describe('#getSource', function() {
|
||||||
|
|
||||||
it('gets the layer source', function() {
|
it('gets the layer source', function() {
|
||||||
var source = new _ol_source_Source_({projection: getProjection('EPSG:4326')});
|
var source = new Source({projection: getProjection('EPSG:4326')});
|
||||||
var layer = new _ol_layer_Layer_({source: source});
|
var layer = new _ol_layer_Layer_({source: source});
|
||||||
expect(layer.getSource()).to.be(source);
|
expect(layer.getSource()).to.be(source);
|
||||||
});
|
});
|
||||||
@@ -228,21 +228,21 @@ describe('ol.layer.Layer', function() {
|
|||||||
|
|
||||||
it('sets the layer source', function() {
|
it('sets the layer source', function() {
|
||||||
var layer = new _ol_layer_Layer_({
|
var layer = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({projection: projection})
|
source: new Source({projection: projection})
|
||||||
});
|
});
|
||||||
|
|
||||||
var source = new _ol_source_Source_({projection: projection});
|
var source = new Source({projection: projection});
|
||||||
layer.set('source', source);
|
layer.set('source', source);
|
||||||
expect(layer.getSource()).to.be(source);
|
expect(layer.getSource()).to.be(source);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('calls changed', function() {
|
it('calls changed', function() {
|
||||||
var layer = new _ol_layer_Layer_({
|
var layer = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({projection: projection})
|
source: new Source({projection: projection})
|
||||||
});
|
});
|
||||||
sinon.spy(layer, 'changed');
|
sinon.spy(layer, 'changed');
|
||||||
|
|
||||||
var source = new _ol_source_Source_({projection: projection});
|
var source = new Source({projection: projection});
|
||||||
layer.set('source', source);
|
layer.set('source', source);
|
||||||
expect(layer.changed.calledOnce).to.be(true);
|
expect(layer.changed.calledOnce).to.be(true);
|
||||||
});
|
});
|
||||||
@@ -250,13 +250,13 @@ describe('ol.layer.Layer', function() {
|
|||||||
it('sets up event listeners', function() {
|
it('sets up event listeners', function() {
|
||||||
sinon.spy(_ol_layer_Layer_.prototype, 'handleSourceChange_');
|
sinon.spy(_ol_layer_Layer_.prototype, 'handleSourceChange_');
|
||||||
|
|
||||||
var first = new _ol_source_Source_({projection: projection});
|
var first = new Source({projection: projection});
|
||||||
var layer = new _ol_layer_Layer_({source: first});
|
var layer = new _ol_layer_Layer_({source: first});
|
||||||
|
|
||||||
first.setState('ready');
|
first.setState('ready');
|
||||||
expect(layer.handleSourceChange_.calledOnce).to.be(true);
|
expect(layer.handleSourceChange_.calledOnce).to.be(true);
|
||||||
|
|
||||||
var second = new _ol_source_Source_({projection: projection});
|
var second = new Source({projection: projection});
|
||||||
layer.set('source', second);
|
layer.set('source', second);
|
||||||
|
|
||||||
expect(layer.handleSourceChange_.calledOnce).to.be(true);
|
expect(layer.handleSourceChange_.calledOnce).to.be(true);
|
||||||
@@ -274,21 +274,21 @@ describe('ol.layer.Layer', function() {
|
|||||||
|
|
||||||
it('sets the layer source', function() {
|
it('sets the layer source', function() {
|
||||||
var layer = new _ol_layer_Layer_({
|
var layer = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({projection: projection})
|
source: new Source({projection: projection})
|
||||||
});
|
});
|
||||||
|
|
||||||
var source = new _ol_source_Source_({projection: projection});
|
var source = new Source({projection: projection});
|
||||||
layer.setSource(source);
|
layer.setSource(source);
|
||||||
expect(layer.getSource()).to.be(source);
|
expect(layer.getSource()).to.be(source);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('calls changed', function() {
|
it('calls changed', function() {
|
||||||
var layer = new _ol_layer_Layer_({
|
var layer = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({projection: projection})
|
source: new Source({projection: projection})
|
||||||
});
|
});
|
||||||
sinon.spy(layer, 'changed');
|
sinon.spy(layer, 'changed');
|
||||||
|
|
||||||
var source = new _ol_source_Source_({projection: projection});
|
var source = new Source({projection: projection});
|
||||||
layer.setSource(source);
|
layer.setSource(source);
|
||||||
expect(layer.changed.calledOnce).to.be(true);
|
expect(layer.changed.calledOnce).to.be(true);
|
||||||
});
|
});
|
||||||
@@ -296,13 +296,13 @@ describe('ol.layer.Layer', function() {
|
|||||||
it('sets up event listeners', function() {
|
it('sets up event listeners', function() {
|
||||||
sinon.spy(_ol_layer_Layer_.prototype, 'handleSourceChange_');
|
sinon.spy(_ol_layer_Layer_.prototype, 'handleSourceChange_');
|
||||||
|
|
||||||
var first = new _ol_source_Source_({projection: projection});
|
var first = new Source({projection: projection});
|
||||||
var layer = new _ol_layer_Layer_({source: first});
|
var layer = new _ol_layer_Layer_({source: first});
|
||||||
|
|
||||||
first.setState('ready');
|
first.setState('ready');
|
||||||
expect(layer.handleSourceChange_.calledOnce).to.be(true);
|
expect(layer.handleSourceChange_.calledOnce).to.be(true);
|
||||||
|
|
||||||
var second = new _ol_source_Source_({projection: projection});
|
var second = new Source({projection: projection});
|
||||||
layer.setSource(second);
|
layer.setSource(second);
|
||||||
|
|
||||||
expect(layer.handleSourceChange_.calledOnce).to.be(true);
|
expect(layer.handleSourceChange_.calledOnce).to.be(true);
|
||||||
@@ -322,7 +322,7 @@ describe('ol.layer.Layer', function() {
|
|||||||
|
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
layer = new _ol_layer_Layer_({
|
layer = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: getProjection('EPSG:4326')
|
projection: getProjection('EPSG:4326')
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
@@ -352,7 +352,7 @@ describe('ol.layer.Layer', function() {
|
|||||||
var layer;
|
var layer;
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
layer = new _ol_layer_Layer_({
|
layer = new _ol_layer_Layer_({
|
||||||
source: new _ol_source_Source_({
|
source: new Source({
|
||||||
projection: getProjection('EPSG:4326')
|
projection: getProjection('EPSG:4326')
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import Point from '../../../../src/ol/geom/Point.js';
|
|||||||
import Polygon from '../../../../src/ol/geom/Polygon.js';
|
import Polygon from '../../../../src/ol/geom/Polygon.js';
|
||||||
import {get as getProjection} from '../../../../src/ol/proj.js';
|
import {get as getProjection} from '../../../../src/ol/proj.js';
|
||||||
import _ol_source_Cluster_ from '../../../../src/ol/source/Cluster.js';
|
import _ol_source_Cluster_ from '../../../../src/ol/source/Cluster.js';
|
||||||
import _ol_source_Source_ from '../../../../src/ol/source/Source.js';
|
import Source from '../../../../src/ol/source/Source.js';
|
||||||
import _ol_source_Vector_ from '../../../../src/ol/source/Vector.js';
|
import _ol_source_Vector_ from '../../../../src/ol/source/Vector.js';
|
||||||
|
|
||||||
describe('ol.source.Cluster', function() {
|
describe('ol.source.Cluster', function() {
|
||||||
@@ -15,7 +15,7 @@ describe('ol.source.Cluster', function() {
|
|||||||
projection: getProjection('EPSG:4326'),
|
projection: getProjection('EPSG:4326'),
|
||||||
source: new _ol_source_Vector_()
|
source: new _ol_source_Vector_()
|
||||||
});
|
});
|
||||||
expect(source).to.be.a(_ol_source_Source_);
|
expect(source).to.be.a(Source);
|
||||||
expect(source).to.be.a(_ol_source_Cluster_);
|
expect(source).to.be.a(_ol_source_Cluster_);
|
||||||
expect(source.getDistance()).to.be(20);
|
expect(source.getDistance()).to.be(20);
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import _ol_layer_Image_ from '../../../../src/ol/layer/Image.js';
|
|||||||
import _ol_proj_Projection_ from '../../../../src/ol/proj/Projection.js';
|
import _ol_proj_Projection_ from '../../../../src/ol/proj/Projection.js';
|
||||||
import _ol_source_ImageStatic_ from '../../../../src/ol/source/ImageStatic.js';
|
import _ol_source_ImageStatic_ from '../../../../src/ol/source/ImageStatic.js';
|
||||||
import _ol_source_Raster_ from '../../../../src/ol/source/Raster.js';
|
import _ol_source_Raster_ from '../../../../src/ol/source/Raster.js';
|
||||||
import _ol_source_Source_ from '../../../../src/ol/source/Source.js';
|
import Source from '../../../../src/ol/source/Source.js';
|
||||||
import _ol_source_Tile_ from '../../../../src/ol/source/Tile.js';
|
import _ol_source_Tile_ from '../../../../src/ol/source/Tile.js';
|
||||||
import _ol_source_XYZ_ from '../../../../src/ol/source/XYZ.js';
|
import _ol_source_XYZ_ from '../../../../src/ol/source/XYZ.js';
|
||||||
|
|
||||||
@@ -94,7 +94,7 @@ where('Uint8ClampedArray').describe('ol.source.Raster', function() {
|
|||||||
threads: 0,
|
threads: 0,
|
||||||
sources: [new _ol_source_Tile_({})]
|
sources: [new _ol_source_Tile_({})]
|
||||||
});
|
});
|
||||||
expect(source).to.be.a(_ol_source_Source_);
|
expect(source).to.be.a(Source);
|
||||||
expect(source).to.be.a(_ol_source_Raster_);
|
expect(source).to.be.a(_ol_source_Raster_);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -1,27 +1,27 @@
|
|||||||
import {get as getProjection} from '../../../../src/ol/proj.js';
|
import {get as getProjection} from '../../../../src/ol/proj.js';
|
||||||
import _ol_source_Source_ from '../../../../src/ol/source/Source.js';
|
import Source from '../../../../src/ol/source/Source.js';
|
||||||
|
|
||||||
|
|
||||||
describe('ol.source.Source', function() {
|
describe('ol.source.Source', function() {
|
||||||
|
|
||||||
describe('constructor', function() {
|
describe('constructor', function() {
|
||||||
it('returns a source', function() {
|
it('returns a source', function() {
|
||||||
var source = new _ol_source_Source_({
|
var source = new Source({
|
||||||
projection: getProjection('EPSG:4326')
|
projection: getProjection('EPSG:4326')
|
||||||
});
|
});
|
||||||
expect(source).to.be.a(_ol_source_Source_);
|
expect(source).to.be.a(Source);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('config option `attributions`', function() {
|
describe('config option `attributions`', function() {
|
||||||
it('accepts undefined', function() {
|
it('accepts undefined', function() {
|
||||||
var source = new _ol_source_Source_({});
|
var source = new Source({});
|
||||||
var attributions = source.getAttributions();
|
var attributions = source.getAttributions();
|
||||||
expect(attributions).to.be(null);
|
expect(attributions).to.be(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('accepts a single string', function() {
|
it('accepts a single string', function() {
|
||||||
var source = new _ol_source_Source_({
|
var source = new Source({
|
||||||
attributions: 'Humpty'
|
attributions: 'Humpty'
|
||||||
});
|
});
|
||||||
var attributions = source.getAttributions();
|
var attributions = source.getAttributions();
|
||||||
@@ -31,7 +31,7 @@ describe('ol.source.Source', function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('accepts an array of strings', function() {
|
it('accepts an array of strings', function() {
|
||||||
var source = new _ol_source_Source_({
|
var source = new Source({
|
||||||
attributions: ['Humpty', 'Dumpty']
|
attributions: ['Humpty', 'Dumpty']
|
||||||
});
|
});
|
||||||
var attributions = source.getAttributions();
|
var attributions = source.getAttributions();
|
||||||
@@ -41,7 +41,7 @@ describe('ol.source.Source', function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('accepts a function that returns a string', function() {
|
it('accepts a function that returns a string', function() {
|
||||||
var source = new _ol_source_Source_({
|
var source = new Source({
|
||||||
attributions: function() {
|
attributions: function() {
|
||||||
return 'Humpty';
|
return 'Humpty';
|
||||||
}
|
}
|
||||||
@@ -53,7 +53,7 @@ describe('ol.source.Source', function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('accepts a function that returns an array of strings', function() {
|
it('accepts a function that returns an array of strings', function() {
|
||||||
var source = new _ol_source_Source_({
|
var source = new Source({
|
||||||
attributions: function() {
|
attributions: function() {
|
||||||
return ['Humpty', 'Dumpty'];
|
return ['Humpty', 'Dumpty'];
|
||||||
}
|
}
|
||||||
@@ -67,7 +67,7 @@ describe('ol.source.Source', function() {
|
|||||||
|
|
||||||
describe('#refresh()', function() {
|
describe('#refresh()', function() {
|
||||||
it('dispatches the change event', function() {
|
it('dispatches the change event', function() {
|
||||||
var source = new _ol_source_Source_({
|
var source = new Source({
|
||||||
projection: getProjection('EPSG:4326')
|
projection: getProjection('EPSG:4326')
|
||||||
});
|
});
|
||||||
var changedSpy = sinon.spy();
|
var changedSpy = sinon.spy();
|
||||||
@@ -81,7 +81,7 @@ describe('ol.source.Source', function() {
|
|||||||
var source = null;
|
var source = null;
|
||||||
|
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
source = new _ol_source_Source_({
|
source = new Source({
|
||||||
attributions: 'before'
|
attributions: 'before'
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import _ol_Tile_ from '../../../../src/ol/Tile.js';
|
|||||||
import TileRange from '../../../../src/ol/TileRange.js';
|
import TileRange from '../../../../src/ol/TileRange.js';
|
||||||
import {get as getProjection} from '../../../../src/ol/proj.js';
|
import {get as getProjection} from '../../../../src/ol/proj.js';
|
||||||
import _ol_proj_Projection_ from '../../../../src/ol/proj/Projection.js';
|
import _ol_proj_Projection_ from '../../../../src/ol/proj/Projection.js';
|
||||||
import _ol_source_Source_ from '../../../../src/ol/source/Source.js';
|
import Source from '../../../../src/ol/source/Source.js';
|
||||||
import _ol_source_Tile_ from '../../../../src/ol/source/Tile.js';
|
import _ol_source_Tile_ from '../../../../src/ol/source/Tile.js';
|
||||||
import _ol_tilecoord_ from '../../../../src/ol/tilecoord.js';
|
import _ol_tilecoord_ from '../../../../src/ol/tilecoord.js';
|
||||||
import _ol_tilegrid_TileGrid_ from '../../../../src/ol/tilegrid/TileGrid.js';
|
import _ol_tilegrid_TileGrid_ from '../../../../src/ol/tilegrid/TileGrid.js';
|
||||||
@@ -59,7 +59,7 @@ describe('ol.source.Tile', function() {
|
|||||||
var source = new _ol_source_Tile_({
|
var source = new _ol_source_Tile_({
|
||||||
projection: getProjection('EPSG:4326')
|
projection: getProjection('EPSG:4326')
|
||||||
});
|
});
|
||||||
expect(source).to.be.a(_ol_source_Source_);
|
expect(source).to.be.a(Source);
|
||||||
expect(source).to.be.a(_ol_source_Tile_);
|
expect(source).to.be.a(_ol_source_Tile_);
|
||||||
});
|
});
|
||||||
it('sets a custom cache size', function() {
|
it('sets a custom cache size', function() {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import _ol_source_Source_ from '../../../../src/ol/source/Source.js';
|
import Source from '../../../../src/ol/source/Source.js';
|
||||||
import _ol_source_TileJSON_ from '../../../../src/ol/source/TileJSON.js';
|
import _ol_source_TileJSON_ from '../../../../src/ol/source/TileJSON.js';
|
||||||
import _ol_Observable_ from '../../../../src/ol/Observable.js';
|
import _ol_Observable_ from '../../../../src/ol/Observable.js';
|
||||||
|
|
||||||
@@ -11,7 +11,7 @@ describe('ol.source.TileJSON', function() {
|
|||||||
var source = new _ol_source_TileJSON_({
|
var source = new _ol_source_TileJSON_({
|
||||||
url: 'spec/ol/data/tilejson.json'
|
url: 'spec/ol/data/tilejson.json'
|
||||||
});
|
});
|
||||||
expect(source).to.be.a(_ol_source_Source_);
|
expect(source).to.be.a(Source);
|
||||||
expect(source).to.be.a(_ol_source_TileJSON_);
|
expect(source).to.be.a(_ol_source_TileJSON_);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user