I am trying to make a web app; where you can put in your current location, select your ideal temperature (weather) and then press go and it will show you the closest locations to you with the weather conditions you’re looking for.
Is bubble capable of such a thing, if so - can someone point me in the right direction to get started? I’ve done all the tutorials and watched a few youtube videos on API’s but cant seem to figure it out.
Finding the weather for given locations would be pretty straightforward. The tricky bit would be finding a way to query all nearby locations. If it were me, I’d probably start like this:
Let the user enter a location (maybe later auto-detect location, but skip this for now) and a weather type (this could be a dropdown menu)
Find a way to collect all nearby locations, at a hard-coded radius (e.g., 50 miles or 100km)
Find an api that can return a list of locations based on latitude-longitude, and search using location input from (1)
Filter results from (3) to be only those locations matching chosen weather from (1)