You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.5 KiB
48 lines
1.5 KiB
export default BuilderGroup;
|
|
declare class BuilderGroup {
|
|
/**
|
|
* @param {number} tolerance Tolerance.
|
|
* @param {import("../../extent.js").Extent} maxExtent Max extent.
|
|
* @param {number} resolution Resolution.
|
|
* @param {number} pixelRatio Pixel ratio.
|
|
*/
|
|
constructor(tolerance: number, maxExtent: import("../../extent.js").Extent, resolution: number, pixelRatio: number);
|
|
/**
|
|
* @private
|
|
* @type {number}
|
|
*/
|
|
private tolerance_;
|
|
/**
|
|
* @private
|
|
* @type {import("../../extent.js").Extent}
|
|
*/
|
|
private maxExtent_;
|
|
/**
|
|
* @private
|
|
* @type {number}
|
|
*/
|
|
private pixelRatio_;
|
|
/**
|
|
* @private
|
|
* @type {number}
|
|
*/
|
|
private resolution_;
|
|
/**
|
|
* @private
|
|
* @type {!Object<string, !Object<import("../canvas.js").BuilderType, Builder>>}
|
|
*/
|
|
private buildersByZIndex_;
|
|
/**
|
|
* @return {!Object<string, !Object<import("../canvas.js").BuilderType, import("./Builder.js").SerializableInstructions>>} The serializable instructions
|
|
*/
|
|
finish(): {
|
|
[x: string]: any;
|
|
};
|
|
/**
|
|
* @param {number|undefined} zIndex Z index.
|
|
* @param {import("../canvas.js").BuilderType} builderType Replay type.
|
|
* @return {import("../VectorContext.js").default} Replay.
|
|
*/
|
|
getBuilder(zIndex: number | undefined, builderType: import("../canvas.js").BuilderType): import("../VectorContext.js").default;
|
|
}
|
|
//# sourceMappingURL=BuilderGroup.d.ts.map
|