all repos — onyx @ c0a33feb7c8955acc019c1336d6992c79c07cd7d

minimal map annotation and location data sharing tool

src/30-handlers.ts (raw)

1
2
3
4
5
6
7
8
9
10
11
12
class MapHandler {
  map: L.Map;
  overlays: OverlayState;
  layers: TileLayerWrapper[];
  
  
  constructor(map: L.Map, overlays: OverlayState, layers: TileLayerWrapper[]) {
    this.map = map;
    this.overlays = overlays;
    this.layers = layers;
  }
}