Blame view

src/models/way.ts 143 Bytes
dc9a0e3c   Yarik   Road fatality
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;
  }