Name frameState skippedFeaturesIds as private

This commit is contained in:
Antoine Abt
2014-03-20 10:24:39 +01:00
parent 0d87516135
commit e1e4969599
2 changed files with 3 additions and 3 deletions

View File

@@ -93,7 +93,7 @@ oli.FrameState.prototype.size;
/** @type {Array.<number>} */
oli.FrameState.prototype.skippedFeaturesIds;
oli.FrameState.prototype.skippedFeaturesIds_;
/** @type {ol.TileQueue} */

View File

@@ -98,7 +98,7 @@ ol.renderer.canvas.VectorLayer.prototype.composeFrame =
replayContext.globalAlpha = layerState.opacity;
replayGroup.replay(
replayContext, frameState.extent, frameState.pixelRatio, transform,
frameState.view2DState.rotation, frameState.skippedFeaturesIds);
frameState.view2DState.rotation, frameState.skippedFeaturesIds_);
if (replayContext != context) {
this.dispatchRenderEvent(replayContext, frameState, transform);
@@ -124,7 +124,7 @@ ol.renderer.canvas.VectorLayer.prototype.forEachFeatureAtPixel =
var rotation = frameState.view2DState.rotation;
var layer = this.getLayer();
return this.replayGroup_.forEachGeometryAtPixel(extent, resolution,
rotation, coordinate, frameState.skippedFeaturesIds,
rotation, coordinate, frameState.skippedFeaturesIds_,
/**
* @param {ol.geom.Geometry} geometry Geometry.
* @param {Object} data Data.