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

26 lines
508 B
TypeScript
Raw Normal View History

2017-09-26 16:31:40 +00:00
import { Component, OnInit } from '@angular/core';
import { Http, Response } from '@angular/http';
import { ApiService } from '../providers/api-service';
import { AgmCoreModule } from '@agm/core';
import 'rxjs/add/operator/map';
@Component({
templateUrl: 'map.component.html',
})
export class MapComponent implements OnInit {
lat: number = 54.0466;
2017-09-26 16:51:14 +00:00
lng: number = -2.8007;
2017-09-27 11:02:46 +00:00
zoom: number = 12;
2017-09-26 16:31:40 +00:00
constructor(
private http: Http,
private api: ApiService,
) { }
ngOnInit(): void {
}
}