I am following this tutorial:
https://www.joshmorony.com/create-a-nearby-places-list-with-google-maps-in-ionic-2-part-2/
It’s a nice tutorial. But in src/providers/locations.ts:
let usersLocation = {
lat: 40.713744,
lng: -74.009056
};
This is hard-coded.
What would be the way to dynamically plugin the users current location?
Thank you!