More specific INTENTCHANGE instead of SYMBOLIZER event

This commit is contained in:
ahocevar
2013-08-30 12:10:55 +02:00
parent e2c4fec253
commit 83720975f8
2 changed files with 3 additions and 3 deletions

View File

@@ -238,7 +238,7 @@ ol.layer.VectorLayerEventType = {
ADD: 'add',
CHANGE: goog.events.EventType.CHANGE,
REMOVE: 'remove',
SYMBOLIZER: 'symbolizer'
INTENTCHANGE: 'intentchange'
};
@@ -612,7 +612,7 @@ ol.layer.Vector.prototype.setRenderIntent =
this.dispatchEvent(/** @type {ol.layer.VectorLayerEventObject} */ ({
extent: extent,
features: features,
type: ol.layer.VectorLayerEventType.SYMBOLIZER
type: ol.layer.VectorLayerEventType.INTENTCHANGE
}));
};