way.ts 143 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 import { Node } from './node'; import * as L from 'leaflet'; export class Way { id: number; nodes: Node[]; polyline: L.Polyline; }