first commit
This commit is contained in:
commit
62506c830a
1207 changed files with 40706 additions and 0 deletions
4
src/app/map-view/map-view.component.html
Normal file
4
src/app/map-view/map-view.component.html
Normal file
|
@ -0,0 +1,4 @@
|
|||
<div>
|
||||
<app-map></app-map>
|
||||
<app-map-info></app-map-info>
|
||||
</div>
|
13
src/app/map-view/map-view.component.scss
Normal file
13
src/app/map-view/map-view.component.scss
Normal file
|
@ -0,0 +1,13 @@
|
|||
:host {
|
||||
display: flex;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
:host > div {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
app-map-info {
|
||||
height: 0%;
|
||||
}
|
15
src/app/map-view/map-view.component.ts
Normal file
15
src/app/map-view/map-view.component.ts
Normal 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 {
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue