planning
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s

This commit is contained in:
2024-10-14 09:15:30 +02:00
parent bcba00a730
commit 6e64e138e2
21059 changed files with 2317811 additions and 1 deletions

25
node_modules/ol/layer/Vector.d.ts generated vendored Normal file
View File

@@ -0,0 +1,25 @@
export default VectorLayer;
/**
* @classdesc
* Vector data is rendered client-side, as vectors. This layer type provides most accurate rendering
* even during animations. Points and labels stay upright on rotated views. For very large
* amounts of vector data, performance may suffer during pan and zoom animations. In this case,
* try {@link module:ol/layer/VectorImage~VectorImageLayer}.
*
* Note that any property set in the options is set as a {@link module:ol/Object~BaseObject}
* property on the layer object; for example, setting `title: 'My Title'` in the
* options means that `title` is observable, and has get/set accessors.
*
* @template {import("../source/Vector.js").default} VectorSourceType
* @extends {BaseVectorLayer<VectorSourceType, CanvasVectorLayerRenderer>}
* @api
*/
declare class VectorLayer<VectorSourceType extends import("../source/Vector.js").default<import("../geom/Geometry.js").default>> extends BaseVectorLayer<VectorSourceType, CanvasVectorLayerRenderer> {
/**
* @param {import("./BaseVector.js").Options<VectorSourceType>} [opt_options] Options.
*/
constructor(opt_options?: import("./BaseVector.js").Options<VectorSourceType> | undefined);
}
import CanvasVectorLayerRenderer from "../renderer/canvas/VectorLayer.js";
import BaseVectorLayer from "./BaseVector.js";
//# sourceMappingURL=Vector.d.ts.map