first commit

This commit is contained in:
phil 2024-10-19 11:53:15 +02:00
commit 62506c830a
1207 changed files with 40706 additions and 0 deletions

View file

@ -0,0 +1,4 @@
<div>
<app-map></app-map>
<app-map-info></app-map-info>
</div>

View file

@ -0,0 +1,13 @@
:host {
display: flex;
height: 100%;
width: 100%;
}
:host > div {
width: 100%;
}
app-map-info {
height: 0%;
}

View file

@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-map-view',
templateUrl: './map-view.component.html',
styleUrls: ['./map-view.component.scss']
})
export class MapViewComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}