Can the vuetify-google-autocomplete be configured to only list cities as shown in this image?
https://i.sstatic.net/PPs3E.png
Currently, my autocomplete feature is set to search for full addresses by default.
https://i.sstatic.net/g70ar.png
I have searched through the documentation and other sources but could not find any information on how to achieve this. Any guidance on this would be appreciated.
Here is a snippet of my code:
App.js :
import VuetifyGoogleAutocomplete from 'vuetify-google-autocomplete';
Vue.use(VuetifyGoogleAutocomplete, {
apiKey: 'xxxxxxxxxxxxxxxxxxxxxxxxx',
installComponents: true,
vueGoogleMapsCompatibility: false
});
Component.js :
<vuetify-google-autocomplete
type="text"
ref="location"
v-model="location"
id="map"
v-on:placechanged="getAddressData"
>