(function($) { $(function() { //var map, //var latlng $(document).on('click', '#geocode', function() { if ($('#artistpress_venue_latlng').val() ) { return; } var street = $('#artistpress_venue_address').val(); var city = $('#artistpress_venue_city').val(); var state = $('#artistpress_venue_state').val(); var postal = $('#artistpress_venue_postal_code').val(); var country = $('#artistpress_venue_country').val(); var address = street + ', ' + city + ' ' + state + ' ' + postal + ' ' + country ; var geocoder = new google.maps.Geocoder(); geocoder.geocode( { 'address': address }, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { var latlng = results[0].geometry.location; // map.setCenter(latlng); // setMarker(latlng); $('#artistpress_venue_latlng').attr('value', latlng); alert("Geocode was successful for: " + address ); } else { alert("Geocode was not successful for the following reason: " + status); } }); }); }); })(jQuery);