Commit 13725b63 by amal

Merge branch 'amal' into 'master'

Amal See merge request !6
parents 50be8a92 57f42af8
...@@ -51,3 +51,4 @@ export class HomePage implements OnInit { ...@@ -51,3 +51,4 @@ export class HomePage implements OnInit {
} }
} }
...@@ -10,6 +10,7 @@ import { MouseEvent } from '@agm/core'; ...@@ -10,6 +10,7 @@ import { MouseEvent } from '@agm/core';
}) })
export class NearbyPage implements OnInit { export class NearbyPage implements OnInit {
markers = [ markers = [
{ {
lat: 51.67, lat: 51.67,
...@@ -44,6 +45,7 @@ export class NearbyPage implements OnInit { ...@@ -44,6 +45,7 @@ export class NearbyPage implements OnInit {
) { } ) { }
ngOnInit() { ngOnInit() {
} }
...@@ -78,3 +80,10 @@ export class NearbyPage implements OnInit { ...@@ -78,3 +80,10 @@ export class NearbyPage implements OnInit {
window.history.back(); window.history.back();
} }
} }
interface marker {
lat: number;
lng: number;
label?: string;
draggable: boolean;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment