We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 147d94e commit 45cbd55Copy full SHA for 45cbd55
1 file changed
site/src/composables/useGeocoder.js
@@ -19,7 +19,9 @@ async function search(query) {
19
const params = new URLSearchParams({
20
api_key: import.meta.env.VITE_STADIA_API_KEY,
21
text: query,
22
- 'boundary.country': 'US',
+ // Match the dataset's geographic scope: 50 states + DC + the
23
+ // 5 inhabited US territories (PR, VI, GU, MP, AS).
24
+ 'boundary.country': 'US,PR,VI,GU,MP,AS',
25
size: '5',
26
})
27
const resp = await fetch(`${STADIA_GEOCODING_URL}?${params}`)
0 commit comments