Well, the reason for driving off the right edge of the map is simple enough:
The left edge of the map is at X=0. If you went further left, you would be going in to negative X values, which you don't want (it screws things up). However, there's nothing stopping you from going the other way, since there's no solid blocks there.
I'm not sure if you're only seeing this issue because of the solidity not working or if you actually have the race track butting up against the edge of the map. If the latter is true, you should definitely move it over. You'll want a column of solid blocks stopping the car from hitting the left edge (and the right edge, top edge, and bottom edge).
Are you using the TopSolidTileShape for the blocks you want to be solid? Because that certainly sounds exactly like the problem you're having. If that is the case, switching it to SolidTileShape should fix the problem.