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 c2a2a30 commit f5e176eCopy full SHA for f5e176e
README.md
@@ -49,8 +49,8 @@ export default async (request, context) => {
49
}
50
51
// Otherwise we can get the "country" variable
52
- const { latlon } = location;
53
- return new Response(`The country is ${JSON.stringify(latlon)}.`)
+ const { lat, lon } = location;
+ return new Response(`The country is ${JSON.stringify({lat, lon})}.`)
54
55
```
56
0 commit comments