diff --git a/projects/project-3/frontend/.gitignore b/projects/project-3/frontend/.gitignore
index 86d943a..e2a50f4 100644
--- a/projects/project-3/frontend/.gitignore
+++ b/projects/project-3/frontend/.gitignore
@@ -7,6 +7,10 @@
# Only exists if Bazel was run
/bazel-out
+# exclude generated css-files
+/src/app/map/*.css.map
+/src/app/map/*.css
+
# dependencies
/node_modules
diff --git a/projects/project-3/frontend/src/app/app.module.ts b/projects/project-3/frontend/src/app/app.module.ts
index 59f3fbb..ad12c07 100644
--- a/projects/project-3/frontend/src/app/app.module.ts
+++ b/projects/project-3/frontend/src/app/app.module.ts
@@ -1,12 +1,14 @@
-import { BrowserModule } from '@angular/platform-browser';
-import { NgModule } from '@angular/core';
+import {BrowserModule} from '@angular/platform-browser';
+import {NgModule} from '@angular/core';
-import { AppRoutingModule } from './app-routing.module';
-import { AppComponent } from './app.component';
-import { MapComponent } from './map/map.component';
-import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
+import {AppRoutingModule} from './app-routing.module';
+import {AppComponent} from './app.component';
+import {MapComponent} from './map/map.component';
+import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import {MatToolbarModule} from '@angular/material/toolbar';
import {FlexLayoutModule} from '@angular/flex-layout';
+import {MatIconModule} from '@angular/material/icon';
+import {MatButtonModule} from '@angular/material/button';
@NgModule({
declarations: [
@@ -18,9 +20,12 @@ import {FlexLayoutModule} from '@angular/flex-layout';
AppRoutingModule,
BrowserAnimationsModule,
MatToolbarModule,
+ MatIconModule,
+ MatButtonModule,
FlexLayoutModule
],
providers: [],
bootstrap: [AppComponent]
})
-export class AppModule { }
+export class AppModule {
+}
diff --git a/projects/project-3/frontend/src/app/map/map.component.css b/projects/project-3/frontend/src/app/map/map.component.css
index 84b2d67..928ef2d 100644
--- a/projects/project-3/frontend/src/app/map/map.component.css
+++ b/projects/project-3/frontend/src/app/map/map.component.css
@@ -1,18 +1,20 @@
-.mat-toolbar {
- display: flex;
+.toolbar-spacer {
+ flex: 1 1 auto;
}
.map-container {
- margin: 30px;
- height: 100%;
+ margin: 0;
+ height: 95%;
}
.map-frame {
- height: 90%;
+ height: 100%;
+ width: 100%;
}
#map {
height: 100%;
+ width: 100%;
}
/*# sourceMappingURL=map.component.css.map */
diff --git a/projects/project-3/frontend/src/app/map/map.component.css.map b/projects/project-3/frontend/src/app/map/map.component.css.map
index 8e10507..9711d7d 100644
--- a/projects/project-3/frontend/src/app/map/map.component.css.map
+++ b/projects/project-3/frontend/src/app/map/map.component.css.map
@@ -1 +1 @@
-{"version":3,"sourceRoot":"","sources":["map.component.scss"],"names":[],"mappings":"AAAA;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE","file":"map.component.css"}
\ No newline at end of file
+{"version":3,"sourceRoot":"","sources":["map.component.scss"],"names":[],"mappings":"AAAA;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA","file":"map.component.css"}
\ No newline at end of file
diff --git a/projects/project-3/frontend/src/app/map/map.component.html b/projects/project-3/frontend/src/app/map/map.component.html
index f271c49..3457e68 100644
--- a/projects/project-3/frontend/src/app/map/map.component.html
+++ b/projects/project-3/frontend/src/app/map/map.component.html
@@ -1,10 +1,19 @@
-