Get City Name Using Google Geolocation

<script type="text/javascript" src="https://code.jquery.com/jquery-2.2.3.js"></script> <script type="text/javascript">     navigator.geolocation.getCurrentPosition(success, error);     function success(position) {         var GEOCODING = 'https://maps.googleapis.com/maps/api/geocode/json?latlng=' + position.coords.latitude + '%2C' + position.coords.longitude + '&language=en';…

How to check internet Connection using Ionic V 1

Add Network information cordova plugin Syntax:    cordova plugin add cordova-plugin-network-information // Check for network connection if(window.Connection) { if(navigator.connection.type == Connection.NONE) { $ionicPopup.confirm({ title: 'No Internet Connection', content: 'Please check…