Question: If I need to display a GeoTIF in response to a user picking from a web page, a day and a camera type, could I use LeafletJS, and if so, with what plugin? I store a GeoTIF for each camera type taken on a certain day.
Background: I'm making a web interface that looks at day-by-day images of the same plot of land. For each day you choose, you can see the land image toggled between the same four cameras. Think of the cameras as options, like "show me Monday with camera one" or "show me Monday with camera two", etc. The key here is to pick a day, and then pick the camera image. The camera images are all stored as as GeoTIFs. The GeoTIFs will be tiled as they are quite large, and I'm currently using Leafletjs to display them.
The problem is in the UI. I'm unclear if a library like Leaflet is correct, as I can't find how to build a UI that "links" two options, like a day and a camera, to display tiles that are chose by the intersection of both options.
I've thought of using the day as the basemap, and then they cameras as layers, but again, I'm unclear of the logical way to accomplish this.