I’m currently coding a game that makes use of Google Maps’ Static API – http://code.google.com/apis/maps/documentation/staticmaps/ However, a limitation of the API means that I can only get a maximum of 640×640 images from it and I need much larger images for my game.
As such I’m just wondering if it’s possible to stitch multiple smaller images into one bigger image using Javascript?
Thanks,
DLiKS
If you are just trying to display them visually, then just put them in a table with no padding/margin.
If you really need them together in a single object, then use HTML5 Canvas and drawImage.