As the description says, with this app you can access your device's current location, display it on Google Maps and get the numeric coordinates.
Ionic is a free and open source mobile SDK for developing native and progressive web apps with ease. For accessing your location I've used the cordova geolocation plugin that provides information about the device's location, such as latitude and longitude.
Starting with Chrome v50, the Geolocation API was removed from unsecured origins. Source
That means your website needs SSL Certification in order to access location based informations.
This repository includes ngrok executable, which is a convenient command line tool that creates a tunnel for localhost to establish both http and https connections.
Commands to run from local folder:
ionic serve
.\ngrok http 8100
@Sergiu Turus