UNPKG

transitive-js

Version:

A tool for generating dynamic stylized transit maps that are easy to understand.

14 lines (13 loc) 381 B
/** * Utility class to cluster points into MultiPoint objects */ export default class PointClusterMap { constructor(transitive: any); transitive: any; clusters: any[]; clusterLookup: {}; vertexPoints: any[]; addPointToCluster(point: any, cluster: any): void; clearMultiPoints(): void; getVertexPoints(baseVertexPoints: any): any[]; }