Posts

Showing posts from July, 2015

Get nearest place location using latitude and longitude

Using latitude and longitude get nearest place location name like school, hospital, restaurant, atm, bank, airport. Here link is supported places provided by google map. Place Types | Google Places API | Google Developers Step 1: Include the js file. <script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false&libraries=places"></script> ----------------------------------------- Step 2: Add the below script. <script type="text/javascript">         var map;                 var pyrmont = new google.maps.LatLng(22.299695, 70.799324 );         function initialize() {             map = new google.maps.Map(document.getElementById('mapdetail'), {                 mapTypeId: google.maps.MapTyp...