Last active
February 2, 2023 13:45
-
-
Save nickpeihl/300166a1b15284f856621b674f6f5ab1 to your computer and use it in GitHub Desktop.
Vega Address search
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://vega.github.io/schema/vega/v5.json", | |
"width": 500, | |
"padding": 5, | |
"signals": [ | |
{ | |
"name": "address_input", | |
"value": "", | |
"bind": { | |
"placeholder": "Search for an address", | |
"input": "text", | |
"name": "Address", | |
"debounce": 300 | |
} | |
} | |
], | |
"data": [ | |
{ | |
"name": "results", | |
"url": { | |
"signal": "'https://nominatim.openstreetmap.org/search?format=json&q=' + address_input" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment