transitive-js
Version:
A tool for generating dynamic stylized transit maps that are easy to understand.
14 lines (13 loc) • 339 B
TypeScript
/**
* A Point subclass representing a turn point in turn-by-turn directions for a
* walk/bike/drive segment
*/
export default class TurnPoint extends Point {
constructor(data: any, id: any);
name: string;
worldX: any;
worldY: any;
isSegmentEndPoint: boolean;
id: any;
}
import Point from "./point";