I would like my autocomplete to show a specified country first, than the other countries.
Right now I have this:
const autocompleteService = new window.google.maps.places.AutocompleteService()
const location = window.google.maps.LatLng(48.856614, 2.3522219)
const query = {
location: location,
radius: 1000,
types: ["(cities)"]
}
autocompleteService.getPlacePredictions(query, cb)
But when I'm typing lond
, I get London
first instead of french cities (such as Londinières
)
EDIT:
I also tried with the bounds
option, and I'm getting the same results
const bounds = new window.google.maps.LatLngBounds(
new window.google.maps.LatLng(49.79295, 1.20374),
new window.google.maps.LatLng(49.921316, 1.498147)
)
const autocompleteService = new window.google.maps.places.AutocompleteService()
const location = window.google.maps.LatLng(48.856614, 2.3522219)
const query = {
bounds: bounds,
types: ["(cities)"]
}
You can try this code (provided you can find your coordinates first.