Map page added with map

This commit is contained in:
piratefinn 2017-09-26 17:31:40 +01:00
parent 67bb904770
commit 40bd7459b5
6 changed files with 70 additions and 0 deletions

View file

@ -0,0 +1,24 @@
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;
lng: number = 2.8007;
constructor(
private http: Http,
private api: ApiService,
) { }
ngOnInit(): void {
}
}