I am working to create an SVG web app and I have around 50 external icons that the app uses. It would be great if I could put all of these icons into one spritemap like with css sprites. I can't think of a way to do this using SVG off the top of my head so if anyone has suggestions please post. The way I envisioned is to have a 20x20px square (for example) that contains the spritemap image and moves the correct icon into the 20x20 square, just like css sprites.
In case some aren't familiar with css sprites, I just want to make it so a shape has a background image that can be positioned in JavaScript. The background image would only be visible within the shape and the rest of it cut off, thus allowing the background image (sprite map) to be positioned such that only the desired icon is shown.
Here is an example of a spritemap:

Thanks!