Advertisement
Guest User

Untitled

a guest
Feb 25th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function convert_to_latlong(address)
  2.     {
  3.         console.log("Line 271");
  4.         var geocoder = new google.maps.Geocoder();
  5.         geocoder.geocode( { 'address': address}, function(results, status)
  6.         {
  7.             if (status == google.maps.GeocoderStatus.OK)
  8.             {
  9.                 var latitude = results[0].geometry.location.lat();
  10.                 var longitude = results[0].geometry.location.lng();
  11.  
  12.                 console.log(latitude, longitude);
  13.  
  14.                 return {
  15.                     latitude: latitude,
  16.                     longitude: longitude
  17.                 };
  18.             }
  19.         });
  20.     }
  21.  
  22.  
  23.  $(document).ready(function()
  24.     {
  25.         var address = convert_to_latlong('Empire State Building, NY');
  26.         console.log("Address: ", address.latitude);
  27. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement