Reputation: 1
How can I filter the result of geocode API with region or bounds parameters ?
Example with filter region:
https://maps.googleapis.com/maps/api/geocode/json?address=tokyo®ion=it
Why return "Tokyo Japan" if I have filtered with parameter "region=it" (Italy) ?
Example with filter bounds with the coordinates of Italy (I think):
Why return "Tokyo Japan"??
Upvotes: -2
Views: 729
Reputation: 1232
The region
parameter and bounds
parameter is only a bias, not a restriction. Please check the Geocoding API documentation:
Upvotes: 0