This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
FoodLoop-Web/src/app/dashboard/map.component.ts

84 lines
2.1 KiB
TypeScript
Raw Normal View History

import { Component, OnInit, AfterViewInit, Input, Output, EventEmitter, ViewChild, TemplateRef } from '@angular/core';
2017-09-26 17:31:40 +01:00
import { ApiService } from '../providers/api-service';
import { AgmCoreModule } from '@agm/core';
import { BsModalService, ModalDirective } from 'ngx-bootstrap/modal';
import { BsModalRef } from 'ngx-bootstrap/modal/bs-modal-ref.service';
2018-06-04 15:23:16 +01:00
2017-09-26 17:31:40 +01:00
@Component({
templateUrl: 'map.component.html',
})
export class MapComponent implements OnInit, AfterViewInit {
2019-07-02 16:46:20 +01:00
@ViewChild('statusModal', { static: true }) myStatusModal: ModalDirective;
2017-09-26 17:31:40 +01:00
lat: number = 54.0466;
2017-09-26 17:51:14 +01:00
lng: number = -2.8007;
2017-09-27 12:02:46 +01:00
zoom: number = 12;
public modalRef: BsModalRef;
clickedMarker: any;
2017-09-26 17:31:40 +01:00
dataReceived: string = 'loading';
2017-09-27 13:54:10 +01:00
2017-09-27 17:46:25 +01:00
markers: Array<{latitude: number, longitude: number, name: string}>;
2017-09-27 14:34:46 +01:00
2017-09-27 13:54:10 +01:00
map: any;
2017-09-26 17:31:40 +01:00
constructor(
private api: ApiService,
private modalService: BsModalService,
2017-09-26 17:31:40 +01:00
) { }
2017-09-27 13:54:10 +01:00
ngOnInit(): void { }
ngAfterViewInit() {
this.myStatusModal.show();
}
2017-09-27 13:54:10 +01:00
public onMapReady(map: any) {
this.map = map;
}
2017-09-26 17:31:40 +01:00
openModal(template: TemplateRef<any>) {
this.modalRef = this.modalService.show(template);
}
public onMarkerClick(clickedMarker, template: TemplateRef<any>) {
console.log(clickedMarker);
this.clickedMarker = clickedMarker;
this.openModal(template);
}
2017-09-27 13:54:10 +01:00
public viewBoundsChanged() {
console.log("finding bounds");
const resp = this.map.getBounds();
console.log("found bounds");
console.log(resp.getNorthEast().lat());
console.log(resp.getNorthEast().lng());
console.log(resp.getSouthWest().lat());
console.log(resp.getSouthWest().lng());
const mapData = {
2017-09-27 17:46:25 +01:00
north_east: {
latitude: resp.getNorthEast().lat(),
longitude: resp.getNorthEast().lng()
},
south_west: {
latitude: resp.getSouthWest().lat(),
longitude: resp.getSouthWest().lng()
},
}
2017-09-27 13:54:10 +01:00
this.api.getMapData(mapData).subscribe(
result => {
this.myStatusModal.hide();
2017-09-27 17:46:25 +01:00
this.markers = result.suppliers;
2017-09-27 13:54:10 +01:00
},
error => {
this.dataReceived = 'no';
2017-09-27 13:54:10 +01:00
console.log('Retrieval Error');
console.log( error._body );
}
);
2017-09-26 17:31:40 +01:00
}
2017-09-27 13:54:10 +01:00
2017-09-26 17:31:40 +01:00
}