aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/config/constants.ts
blob: 3cbb37c2287dd87fd595318623c3a72105cfe0a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import type { LngLatLike } from "maplibre-gl";

export const APP_CONSTANTS = {
  id: "vigo",
  defaultCenter: {
    lat: 42.229188855975046,
    lng: -8.72246955783102,
  } as LngLatLike,
  bounds: {
    sw: [-16, 36] as LngLatLike,
    ne: [2, 45.5] as LngLatLike,
  },
  textColour: "#e72b37",
  defaultZoom: 14,
  showMeters: true,
};