Last active
August 29, 2015 14:20
-
-
Save MichaelCPell/a35f43151e883e00cfed to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?libraries=places"></script> | |
$.each($(".google-place"), function(index, value) { | |
var autocomplete = new google.maps.places.Autocomplete(value); | |
google.maps.event.addListener(autocomplete, 'place_changed', function() { | |
var place = autocomplete.getPlace(); | |
window.foo = place | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment