From cc179ba6efd9a99b13c8f31050d63f38200e4f9c Mon Sep 17 00:00:00 2001 From: Ratnadeep Rajendra Kharade <92khra1mst@hft-stuttgart.de> Date: Mon, 13 Jan 2020 22:06:08 +0100 Subject: [PATCH] Removed build errors --- src/app/components/here-map/here-map.component.html | 2 +- src/app/help-line/help-line.page.ts | 4 ++++ src/app/home/home.page.html | 2 +- src/app/home/home.page.scss | 4 ++-- src/app/home/home.page.ts | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/app/components/here-map/here-map.component.html b/src/app/components/here-map/here-map.component.html index e1ac575..2020555 100644 --- a/src/app/components/here-map/here-map.component.html +++ b/src/app/components/here-map/here-map.component.html @@ -1,4 +1,4 @@ -<div #mapElement style="width: 100%; height: 100%" id="mapContainer" *ngIf="!is3DChecked"></div> +<div #mapElement style="width: 100%; height: 100%" id="mapContainer"></div> <ion-fab class="get-position" vertical="bottom" horizontal="end" (click)="getCurrentPosition()" slot="fixed"> <ion-fab-button> <ion-icon name="locate"></ion-icon> diff --git a/src/app/help-line/help-line.page.ts b/src/app/help-line/help-line.page.ts index e8038b7..cbe7430 100644 --- a/src/app/help-line/help-line.page.ts +++ b/src/app/help-line/help-line.page.ts @@ -12,4 +12,8 @@ export class HelpLinePage implements OnInit { ngOnInit() { } + CallHelpLine() { + + } + } diff --git a/src/app/home/home.page.html b/src/app/home/home.page.html index 91f7f46..9541f13 100644 --- a/src/app/home/home.page.html +++ b/src/app/home/home.page.html @@ -13,7 +13,7 @@ </ion-header> <ion-content> - <div #mapElement style="width: 100%; height: 100%" id="mapContainer" *ngIf="!is3DChecked"></div> + <div #mapElement style="width: 100%; height: 100%" id="mapContainer"></div> <ion-fab class="get-position" vertical="bottom" horizontal="end" (click)="getCurrentPosition()" slot="fixed"> <ion-fab-button> <ion-icon name="locate"></ion-icon> diff --git a/src/app/home/home.page.scss b/src/app/home/home.page.scss index 3de9d93..b44de5d 100644 --- a/src/app/home/home.page.scss +++ b/src/app/home/home.page.scss @@ -31,7 +31,7 @@ ion-footer{ position: relative; .distance-data{ - padding-right: 70px; + padding-right: 80px; padding-left: 60px; font-size: 14px; @@ -58,7 +58,7 @@ ion-footer{ bottom: 0; line-height: 70px; text-align: center; - width: 70px; + width: 80px; font-size: 20px; } } diff --git a/src/app/home/home.page.ts b/src/app/home/home.page.ts index e7c4f57..8293575 100644 --- a/src/app/home/home.page.ts +++ b/src/app/home/home.page.ts @@ -30,7 +30,7 @@ export class HomePage implements OnInit, OnDestroy { bikeApi: Observable<any>; public isDetailsVisible = false; - public selectedBike = { id: 0 }; + public selectedBike:any = { id: 0 }; public distance=""; public isBikeReserved = false; -- GitLab