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 {
}
}
......@@ -9,6 +9,7 @@ import { MouseEvent } from '@agm/core';
styleUrls: ['./nearby.page.scss'],
})
export class NearbyPage implements OnInit {
markers = [
{
......@@ -43,6 +44,7 @@ export class NearbyPage implements OnInit {
private location: Location
) { }
ngOnInit() {
......@@ -78,3 +80,10 @@ export class NearbyPage implements OnInit {
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