Fix module paths

This commit is contained in:
ahocevar
2018-10-29 15:24:30 +01:00
parent b50749e1ea
commit f8c0d284de
5 changed files with 12 additions and 12 deletions

View File

@@ -8,13 +8,13 @@
export default { export default {
/** /**
* Triggered when an item is added to the collection. * Triggered when an item is added to the collection.
* @event module:ol/Collection~CollectionEvent#add * @event module:ol/Collection.CollectionEvent#add
* @api * @api
*/ */
ADD: 'add', ADD: 'add',
/** /**
* Triggered when an item is removed from the collection. * Triggered when an item is removed from the collection.
* @event module:ol/Collection~CollectionEvent#remove * @event module:ol/Collection.CollectionEvent#remove
* @api * @api
*/ */
REMOVE: 'remove' REMOVE: 'remove'

View File

@@ -8,7 +8,7 @@
export default { export default {
/** /**
* Triggered when a property is changed. * Triggered when a property is changed.
* @event module:ol/Object~ObjectEvent#propertychange * @event module:ol/Object.ObjectEvent#propertychange
* @api * @api
*/ */
PROPERTYCHANGE: 'propertychange' PROPERTYCHANGE: 'propertychange'

View File

@@ -9,7 +9,7 @@ export default {
/** /**
* Triggered when a tile starts loading. * Triggered when a tile starts loading.
* @event module:ol/source/Tile~TileSourceEvent#tileloadstart * @event module:ol/source/Tile.TileSourceEvent#tileloadstart
* @api * @api
*/ */
TILELOADSTART: 'tileloadstart', TILELOADSTART: 'tileloadstart',
@@ -17,14 +17,14 @@ export default {
/** /**
* Triggered when a tile finishes loading, either when its data is loaded, * Triggered when a tile finishes loading, either when its data is loaded,
* or when loading was aborted because the tile is no longer needed. * or when loading was aborted because the tile is no longer needed.
* @event module:ol/source/Tile~TileSourceEvent#tileloadend * @event module:ol/source/Tile.TileSourceEvent#tileloadend
* @api * @api
*/ */
TILELOADEND: 'tileloadend', TILELOADEND: 'tileloadend',
/** /**
* Triggered if tile loading results in an error. * Triggered if tile loading results in an error.
* @event module:ol/source/Tile~TileSourceEvent#tileloaderror * @event module:ol/source/Tile.TileSourceEvent#tileloaderror
* @api * @api
*/ */
TILELOADERROR: 'tileloaderror' TILELOADERROR: 'tileloaderror'

View File

@@ -154,7 +154,7 @@ export class VectorSourceEvent extends Event {
* by this source are suitable for editing. See {@link module:ol/source/VectorTile~VectorTile} for * by this source are suitable for editing. See {@link module:ol/source/VectorTile~VectorTile} for
* vector data that is optimized for rendering. * vector data that is optimized for rendering.
* *
* @fires ol/source/Vector~VectorSourceEvent * @fires ol/source/Vector.VectorSourceEvent
* @api * @api
*/ */
class VectorSource extends Source { class VectorSource extends Source {
@@ -469,7 +469,7 @@ class VectorSource extends Source {
/** /**
* Remove all features from the source. * Remove all features from the source.
* @param {boolean=} opt_fast Skip dispatching of {@link module:ol/source/Vector~VectorSourceEvent#removefeature} events. * @param {boolean=} opt_fast Skip dispatching of {@link module:ol/source/Vector.VectorSourceEvent#removefeature} events.
* @api * @api
*/ */
clear(opt_fast) { clear(opt_fast) {

View File

@@ -8,21 +8,21 @@
export default { export default {
/** /**
* Triggered when a feature is added to the source. * Triggered when a feature is added to the source.
* @event ol/source/Vector~VectorSourceEvent#addfeature * @event ol/source/Vector.VectorSourceEvent#addfeature
* @api * @api
*/ */
ADDFEATURE: 'addfeature', ADDFEATURE: 'addfeature',
/** /**
* Triggered when a feature is updated. * Triggered when a feature is updated.
* @event ol/source/Vector~VectorSourceEvent#changefeature * @event ol/source/Vector.VectorSourceEvent#changefeature
* @api * @api
*/ */
CHANGEFEATURE: 'changefeature', CHANGEFEATURE: 'changefeature',
/** /**
* Triggered when the clear method is called on the source. * Triggered when the clear method is called on the source.
* @event ol/source/Vector~VectorSourceEvent#clear * @event ol/source/Vector.VectorSourceEvent#clear
* @api * @api
*/ */
CLEAR: 'clear', CLEAR: 'clear',
@@ -30,7 +30,7 @@ export default {
/** /**
* Triggered when a feature is removed from the source. * Triggered when a feature is removed from the source.
* See {@link module:ol/source/Vector#clear source.clear()} for exceptions. * See {@link module:ol/source/Vector#clear source.clear()} for exceptions.
* @event ol/source/Vector~VectorSourceEvent#removefeature * @event ol/source/Vector.VectorSourceEvent#removefeature
* @api * @api
*/ */
REMOVEFEATURE: 'removefeature' REMOVEFEATURE: 'removefeature'