Merge pull request #11858 from MoonE/apidoc-vectoreventtype

Correct documented event names for VectorSourceEvent
This commit is contained in:
MoonE
2020-12-23 12:05:11 +01:00
committed by GitHub
+3 -3
View File
@@ -37,21 +37,21 @@ export default {
/** /**
* Triggered when features starts loading. * Triggered when features starts loading.
* @event module:ol/source/Vector.VectorSourceEvent#featureloadstart * @event module:ol/source/Vector.VectorSourceEvent#featuresloadstart
* @api * @api
*/ */
FEATURESLOADSTART: 'featuresloadstart', FEATURESLOADSTART: 'featuresloadstart',
/** /**
* Triggered when features finishes loading. * Triggered when features finishes loading.
* @event module:ol/source/Vector.VectorSourceEvent#featureloadend * @event module:ol/source/Vector.VectorSourceEvent#featuresloadend
* @api * @api
*/ */
FEATURESLOADEND: 'featuresloadend', FEATURESLOADEND: 'featuresloadend',
/** /**
* Triggered if feature loading results in an error. * Triggered if feature loading results in an error.
* @event module:ol/source/Vector.VectorSourceEvent#featureloaderror * @event module:ol/source/Vector.VectorSourceEvent#featuresloaderror
* @api * @api
*/ */
FEATURESLOADERROR: 'featuresloaderror', FEATURESLOADERROR: 'featuresloaderror',