Hi,
i'm trying to create a table populated by data coming from this api
https://osm.buntinglabs.com/v1/osm/extract/api_key=XXXX&bbox={{ bboxValue }}&tags=amenity%3Drestaurant
the bboxValue should be dynamically input in a text field by the user (they are 4 floating numbers that define an area on openstreetmap)
i created the table and the data are correctly loaded.
I added a text input field called bboxValue with "form data key" {{ self.id }}
but when i run the script it says
{
"error": "Could not convert provided bbox parameter to 4 floating point numbers (check for null or undefined?)."
}
how can i fix this?
thanks!
Hello @eldoland,
I think you should be using {{ bboxValue.value }} instead of {{ bboxValue }}.
1 Like