Module types for ol/proj

This commit is contained in:
Tim Schaub
2018-03-11 23:20:25 -06:00
parent ef70d71636
commit a743ec3989
49 changed files with 103 additions and 103 deletions

View File

@@ -89,7 +89,7 @@ const MousePosition = function(opt_options) {
/**
* @private
* @type {ol.proj.Projection}
* @type {module:ol/proj/Projection~Projection}
*/
this.mapProjection_ = null;
@@ -153,13 +153,13 @@ MousePosition.prototype.getCoordinateFormat = function() {
/**
* Return the projection that is used to report the mouse position.
* @return {ol.proj.Projection|undefined} The projection to report mouse
* @return {module:ol/proj/Projection~Projection|undefined} The projection to report mouse
* position in.
* @observable
* @api
*/
MousePosition.prototype.getProjection = function() {
return /** @type {ol.proj.Projection|undefined} */ (this.get(PROJECTION));
return /** @type {module:ol/proj/Projection~Projection|undefined} */ (this.get(PROJECTION));
};