[GIS] Why won’t mapbox map load into DIV container

mapbox

I cannot figure out why I cannot load a map into a CSS template that I am trying to customize.

I have placed a fiddle here:

http://jsfiddle.net/mapbaker/Du7zq/10/

Basically I'm trying to get a map to load into the red DIV Container (called mapBox)

Best Answer

Change

var map = mapbox.map('map');

to

var map = mapbox.map('mapBox');
Related Question