Use 'module:ol/Overlay~OverlayOptions' instead of 'olx.OverlayOptions'

This commit is contained in:
Frederic Junod
2018-03-13 16:11:56 +01:00
parent 8c58bb4332
commit 13da5ef01d
+3 -3
View File
@@ -95,7 +95,7 @@ const Property = {
* *
* @constructor * @constructor
* @extends {module:ol/Object~Object} * @extends {module:ol/Object~Object}
* @param {olx.OverlayOptions} options Overlay options. * @param {module:ol/Overlay~OverlayOptions} options Overlay options.
* @api * @api
*/ */
const Overlay = function(options) { const Overlay = function(options) {
@@ -104,7 +104,7 @@ const Overlay = function(options) {
/** /**
* @protected * @protected
* @type {olx.OverlayOptions} * @type {module:ol/Overlay~OverlayOptions}
*/ */
this.options = options; this.options = options;
@@ -594,7 +594,7 @@ Overlay.prototype.updateRenderedPosition = function(pixel, mapSize) {
/** /**
* returns the options this Overlay has been created with * returns the options this Overlay has been created with
* @public * @public
* @return {olx.OverlayOptions} overlay options * @return {module:ol/Overlay~OverlayOptions} overlay options
*/ */
Overlay.prototype.getOptions = function() { Overlay.prototype.getOptions = function() {
return this.options; return this.options;