This commit is contained in:
124
node_modules/ol/style/IconImage.d.ts
generated
vendored
Normal file
124
node_modules/ol/style/IconImage.d.ts
generated
vendored
Normal file
@@ -0,0 +1,124 @@
|
||||
/**
|
||||
* @param {HTMLImageElement|HTMLCanvasElement} image Image.
|
||||
* @param {string} src Src.
|
||||
* @param {import("../size.js").Size} size Size.
|
||||
* @param {?string} crossOrigin Cross origin.
|
||||
* @param {import("../ImageState.js").default} imageState Image state.
|
||||
* @param {import("../color.js").Color} color Color.
|
||||
* @return {IconImage} Icon image.
|
||||
*/
|
||||
export function get(image: HTMLImageElement | HTMLCanvasElement, src: string, size: import("../size.js").Size, crossOrigin: string | null, imageState: any, color: import("../color.js").Color): IconImage;
|
||||
export default IconImage;
|
||||
declare class IconImage extends EventTarget {
|
||||
/**
|
||||
* @param {HTMLImageElement|HTMLCanvasElement} image Image.
|
||||
* @param {string|undefined} src Src.
|
||||
* @param {import("../size.js").Size} size Size.
|
||||
* @param {?string} crossOrigin Cross origin.
|
||||
* @param {import("../ImageState.js").default} imageState Image state.
|
||||
* @param {import("../color.js").Color} color Color.
|
||||
*/
|
||||
constructor(image: HTMLImageElement | HTMLCanvasElement, src: string | undefined, size: import("../size.js").Size, crossOrigin: string | null, imageState: any, color: import("../color.js").Color);
|
||||
/**
|
||||
* @private
|
||||
* @type {HTMLImageElement|HTMLCanvasElement}
|
||||
*/
|
||||
private hitDetectionImage_;
|
||||
/**
|
||||
* @private
|
||||
* @type {HTMLImageElement|HTMLCanvasElement}
|
||||
*/
|
||||
private image_;
|
||||
/**
|
||||
* @private
|
||||
* @type {Object<number, HTMLCanvasElement>}
|
||||
*/
|
||||
private canvas_;
|
||||
/**
|
||||
* @private
|
||||
* @type {import("../color.js").Color}
|
||||
*/
|
||||
private color_;
|
||||
/**
|
||||
* @private
|
||||
* @type {?function():void}
|
||||
*/
|
||||
private unlisten_;
|
||||
/**
|
||||
* @private
|
||||
* @type {import("../ImageState.js").default}
|
||||
*/
|
||||
private imageState_;
|
||||
/**
|
||||
* @private
|
||||
* @type {import("../size.js").Size}
|
||||
*/
|
||||
private size_;
|
||||
/**
|
||||
* @private
|
||||
* @type {string|undefined}
|
||||
*/
|
||||
private src_;
|
||||
/**
|
||||
* @private
|
||||
* @return {boolean} The image canvas is tainted.
|
||||
*/
|
||||
private isTainted_;
|
||||
tainted_: boolean | undefined;
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
private dispatchChangeEvent_;
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
private handleImageError_;
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
private handleImageLoad_;
|
||||
/**
|
||||
* @param {number} pixelRatio Pixel ratio.
|
||||
* @return {HTMLImageElement|HTMLCanvasElement} Image or Canvas element.
|
||||
*/
|
||||
getImage(pixelRatio: number): HTMLImageElement | HTMLCanvasElement;
|
||||
/**
|
||||
* @param {number} pixelRatio Pixel ratio.
|
||||
* @return {number} Image or Canvas element.
|
||||
*/
|
||||
getPixelRatio(pixelRatio: number): number;
|
||||
/**
|
||||
* @return {import("../ImageState.js").default} Image state.
|
||||
*/
|
||||
getImageState(): any;
|
||||
/**
|
||||
* @return {HTMLImageElement|HTMLCanvasElement} Image element.
|
||||
*/
|
||||
getHitDetectionImage(): HTMLImageElement | HTMLCanvasElement;
|
||||
/**
|
||||
* Get the size of the icon (in pixels).
|
||||
* @return {import("../size.js").Size} Image size.
|
||||
*/
|
||||
getSize(): import("../size.js").Size;
|
||||
/**
|
||||
* @return {string|undefined} Image src.
|
||||
*/
|
||||
getSrc(): string | undefined;
|
||||
/**
|
||||
* Load not yet loaded URI.
|
||||
*/
|
||||
load(): void;
|
||||
/**
|
||||
* @param {number} pixelRatio Pixel ratio.
|
||||
* @private
|
||||
*/
|
||||
private replaceColor_;
|
||||
/**
|
||||
* Discards event handlers which listen for load completion or errors.
|
||||
*
|
||||
* @private
|
||||
*/
|
||||
private unlistenImage_;
|
||||
}
|
||||
import EventTarget from "../events/Target.js";
|
||||
//# sourceMappingURL=IconImage.d.ts.map
|
||||
Reference in New Issue
Block a user