You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
496B

  1. import {Routes} from "@angular/router";
  2. import {MapComponent} from "./map/map.component";
  3. import {OverallGroundComponent} from "./overall-ground/overall-ground.component";
  4. import {CameraStreamComponent} from "./camera-stream/camera-stream.component";
  5. export const overviewRoutes: Routes = [
  6. {
  7. path: '',
  8. component: MapComponent,
  9. },
  10. {
  11. path: 'overall-ground',
  12. component: OverallGroundComponent
  13. },
  14. {
  15. path: 'camera-stream',
  16. component: CameraStreamComponent
  17. }
  18. ];