goldfinch

Results 2 comments of goldfinch

My workaround was to use callbacks and hash, here is an example if someone is looking for a solution ```javascript new SnazzyInfoWindow({ ... callbacks: { beforeOpen: function(){ window.history.replaceState(null, null, '...

For those who are still looking for a solution: just specify 'fields' in options https://github.com/olefirenko/vue-google-autocomplete/blob/master/src/VueGoogleAutocomplete.vue#L123 ```javascript const options = { fields: ['geometry', 'address_components', 'place_id'] // or any other fields you...