show just the street address in google.maps.event.addListener()

后端 未结 2 1606
眼角桃花
眼角桃花 2021-01-17 01:34

I have written a small function that will get the user address using the google.maps.event.addListener(). Here is the jsFiddle.

Everything is exactly w

2条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-17 02:01

    The above solution works great to autocomplete individual address fields. Here's an implementation with options to bias the results, however I'm having problems using bounds to bias the results of the autocomplete field. Here's my jsFiddle.

    var defaultBounds = new google.maps.LatLngBounds(
        new google.maps.LatLng(33.89028890,-117.5617340),
        new google.maps.LatLng(33.7706850,-117.6639850)
    );
    
    var updateAddress = {
        autocomplete: new google.maps.places.Autocomplete($("#address")[0], { 
            bounds: defaultBounds,
            types: ['geocode'],
            componentRestrictions: {country: 'us'}
        }),            
        event: function(){
            var self = this;    
            google.maps.event.addListener(self.autocomplete, 'place_changed', function() {
                var place = self.autocomplete.getPlace(),
                    address = place.address_components,
                    streetAddress = '',
                    suburb = '',
                    state = '',
                    zip = '',
                    country = '';
    
                for (var i = 0; i < address.length; i++) {
                    var addressType = address[i].types[0];
    
                    if (addressType == 'subpremise') {
                        streetAddress += address[i].long_name + '/';
                    }
                    if (addressType == 'street_number') {
                        streetAddress += address[i].long_name + ' ';
                    }
                    if (address[i].types[0] == 'route') {
                        streetAddress += address[i].long_name;
                    }
                    if (addressType == 'locality') {
                        suburb = address[i].long_name;
                    }
                    if (addressType == 'administrative_area_level_1') {
                        state = address[i].long_name;
                    }
                    if (addressType == 'postal_code') {
                        zip = address[i].long_name;
                    }
                    if (addressType == 'country') {
                        country = address[i].long_name;
                    }
                }
    
                // update the textboxes
                setTimeout(function(){$('#address').val(streetAddress);},50);
                $('#suburb').val(suburb);
                $('#state').val(state);
                $('#zip').val(zip);
            });
    
        }
    };
    
    updateAddress.event();
    

提交回复
热议问题