ol-displaced-points
Version:
Displaced Points methodology works to visualize all features of a point layer, even if they have the same location. The map takes the points falling in a given Distance tolerance from each other (cluster) and places them around their barycenter.
30 lines • 797 B
TypeScript
export default DelimitedCluster;
export type Options = {
/**
* Field to delimit clusters.
*/
delimiterField?: string | undefined;
};
/**
* @typedef {Object} Options
* @property {string} [delimiterField] Field to delimit clusters.
*/
/**
* @classdesc
* Desc.
* @api
* @extends {Cluster<Feature<import("ol/geom/Geometry.js").default>>}
*/
declare class DelimitedCluster extends Cluster<Feature<import("ol/geom/Geometry.js").default>> {
/**
* @param {Options<FeatureType>} [options] Cluster options.
*/
constructor(options?: Options<FeatureType>);
/**
* @type {string|undefined}
* @protected
*/
protected delimiterField: string | undefined;
}
import Cluster from "ol/source/Cluster.js";
//# sourceMappingURL=DelimitedCluster.d.ts.map