I want to create a front-end to basically visualize a 2-dimensional array. It's a large grid, large enough that the tiles may boil down to single pixels when looking at it from afar.
I'd like to implement zooming and 2d scrolling to navigate the representation (which is nothing more than colored squares).
What's the easiest way to go about this? This is not the part of the project i'm the most interested in, so I'd like to avoid having to learn huge frameworks.
I'm perfectly willing to use a canvas
and/or JS/CSS
techniques over elements.