This is for some inspiration for whomever it may help. I decided to try to make an isometric game map with some 3d aspects to it. This is what I came up with so far.
http://teststuff.freehostingcloud.com
Basically, the whole map is just made up of javascript. I made the initial map1, and map2 divs inside the play area tag. Map 1 is the basic floor tiles, map 2 is for 3d boxes and other things. It sits right on top of map one.
Using javascript, I checked each array and told it whenever it was a specific number in the map 1 and map 2 arrays to create a new element and assign a specific ID to that div giving it a specific background color or image.
For the boxes, I just took the tile div and said when it checked the array, and parse and integer that was 6, create 3 divs and i then skewed each div in css3 to make them take each side of the polygon which created the 3d box.
Tell me what you all think about it. I'm doing all of this just to better understand javascript and so on. I say that in the past 2 months i have progressed alot!