Advertisement
Guest User

Untitled

a guest
Feb 25th, 2018
90
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.                 console.log(latitude, longitude);
  12.             }
  13.  
  14.         });
  15.     }
  16.  
  17. $(document).ready(function()
  18.     {
  19.         var address = convert_to_latlong('Empire State Building, NY');
  20.         console.log("Address: ", address.latitude);
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement