Advertisement
Guest User

Untitled

a guest
Aug 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. 40.7917804,-74.14482129999999 - wrong (USA Address)
  2.  
  3. 43.64877740000001,-79.37871480000001
  4.  
  5. var address = new google.maps.places.Autocomplete((document.getElementById(id)‌​), {
  6. types: ['geocode'],
  7. componentRestrictions: {
  8. country: 'ca'
  9. }
  10. });
  11. address.addListener('place_changed', function() {
  12. var place = address.getPlace();
  13. $j('#' + txtboxid).attr({
  14. 'data-lat': place.geometry.location.lat(),
  15. 'data-lon': place.geometry.location.lng()
  16. });
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement