@@ -46,7 +46,7 @@ class ImageCanvas extends ImageBase {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @private
|
* @private
|
||||||
* @type {Error}
|
* @type {?Error}
|
||||||
*/
|
*/
|
||||||
this.error_ = null;
|
this.error_ = null;
|
||||||
|
|
||||||
@@ -54,7 +54,7 @@ class ImageCanvas extends ImageBase {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Get any error associated with asynchronous rendering.
|
* Get any error associated with asynchronous rendering.
|
||||||
* @return {Error} Any error that occurred during rendering.
|
* @return {?Error} Any error that occurred during rendering.
|
||||||
*/
|
*/
|
||||||
getError() {
|
getError() {
|
||||||
return this.error_;
|
return this.error_;
|
||||||
|
|||||||
+1
-11
@@ -312,16 +312,6 @@ class PluggableMap extends BaseObject {
|
|||||||
*/
|
*/
|
||||||
this.interactions = optionsInternal.interactions || new Collection();
|
this.interactions = optionsInternal.interactions || new Collection();
|
||||||
|
|
||||||
/**
|
|
||||||
* @type {import("./events/Target.js").default}
|
|
||||||
*/
|
|
||||||
this.labelCache_ = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @type {import("./events.js").EventsKey}
|
|
||||||
*/
|
|
||||||
this.labelCacheListenerKey_;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @type {Collection<import("./Overlay.js").default>}
|
* @type {Collection<import("./Overlay.js").default>}
|
||||||
* @private
|
* @private
|
||||||
@@ -342,7 +332,7 @@ class PluggableMap extends BaseObject {
|
|||||||
this.renderer_ = null;
|
this.renderer_ = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @type {function(Event): void|undefined}
|
* @type {undefined|function(Event): void}
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
this.handleResize_;
|
this.handleResize_;
|
||||||
|
|||||||
@@ -421,7 +421,7 @@ class Graticule extends VectorLayer {
|
|||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @type {import("../extent.js").Extent}
|
* @type {?import("../extent.js").Extent}
|
||||||
*/
|
*/
|
||||||
this.renderedExtent_ = null;
|
this.renderedExtent_ = null;
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -499,7 +499,7 @@ export function transformWithProjections(point, sourceProjection, destinationPro
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @type {Projection}
|
* @type {?Projection}
|
||||||
*/
|
*/
|
||||||
let userProjection = null;
|
let userProjection = null;
|
||||||
|
|
||||||
@@ -526,7 +526,7 @@ export function clearUserProjection() {
|
|||||||
* Get the projection for coordinates supplied from and returned by API methods.
|
* Get the projection for coordinates supplied from and returned by API methods.
|
||||||
* Note that this method is not yet a part of the stable API. Support for user
|
* Note that this method is not yet a part of the stable API. Support for user
|
||||||
* projections is not yet complete and should be considered experimental.
|
* projections is not yet complete and should be considered experimental.
|
||||||
* @returns {Projection} The user projection (or null if not set).
|
* @returns {?Projection} The user projection (or null if not set).
|
||||||
*/
|
*/
|
||||||
export function getUserProjection() {
|
export function getUserProjection() {
|
||||||
return userProjection;
|
return userProjection;
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ class CanvasTileLayerRenderer extends CanvasLayerRenderer {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @private
|
* @private
|
||||||
* @type {import("../../extent.js").Extent}
|
* @type {?import("../../extent.js").Extent}
|
||||||
*/
|
*/
|
||||||
this.renderedExtent_ = null;
|
this.renderedExtent_ = null;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user