Getting to Columbia
Directions to Campus
³Ô¹Ï±¬ÁÏ is located in the heart of the third most populous city in the United States, and one of the most creative and forward-thinking cities in the world. Finding your way to us is a breeze, thanks to multiple interstates and a widespread public transit system.
Columbia occupies more than a dozen buildings across the South Loop in downtown Chicago. You'll find both our Admissions offices and the starting point for campus tours at 618 S. Michigan Ave. Our campus is easily accessible via public transportation, with countless "L" train and bus stops moments from our buildings.
Where to stay
The map above lists several hotels in proximity to campus. Columbia has partnered with the Chicago Hilton at 720 S. Michigan Ave (one block from our Welcome Center) to offer a special discounted rate to our guests. You can book this rate using the link below.
Parking information
There are many parking lots in the South Loop. Parking in the area can range from $10 to $25+, and weekend rates may vary. We do not recommend parking on the street.
Parking with SpotHero
We recommend booking convenient and affordable parking in advance through SpotHero, with savings of up to 50 percent off drive-up costs.
New to SpotHero? and use code COLUMEDU for 10 percent savings on your first park.
';
var counter = 0;
for (i = 0; i < locations.length; i++) {
// grab place type for current building
var place_type = locations[i][4];
// filter
if (placeTypeFilter == 0 || placeTypeFilter == place_type) {
// color code marker
switch (place_type) {
case 1:
image_src = '/img/ui/marker-admissions-blue.png';
break;
case 2:
image_src = '/img/ui/marker-admissions-yellow.png';
break;
case 3:
image_src = '/img/ui/marker-admissions-red.png';
break;
case 4:
image_src = '/img/ui/marker-admissions-green.png';
break;
// case 5:
// image_src = '/img/ui/marker-purple.png';
// break;
default:
image_src = '/img/ui/marker-admissions-blue.png';
}
var myIcon = new google.maps.MarkerImage(
image_src,
null,
null,
null,
new google.maps.Size(22, 30)
);
var marker = new google.maps.Marker({
position: new google.maps.LatLng(locations[i][2], locations[i][3]),
animation: google.maps.Animation.DROP,
map: map,
icon: myIcon
});
google.maps.event.addListener(
marker,
'click',
(function (marker, i) {
return function () {
/*
too fancy
var nameArray = locations[i][0].split('/');
var name = '';
if (nameArray.length > 1) {
name = nameArray[1];
} */
var name = locations[i][0];
infowindow.setContent(
'' +
name +
'' +
locations[i][1] +
'' +
directionsLink(locations[i]) +
''
);
infowindow.open(map, marker);
map.setZoom(16);
$.smoothScroll({
scrollTarget: '#campus-map'
});
};
})(marker, i)
);
markers.push(marker);
legend_html += '
- ';
legend_html +=
'' +
locations[i][0] +
'';
legend_html += '
';
if ((counter + 1) % 10 == 0) {
legend_html += '';
legend_html += '
';
legend_html += '';
legend_html += '
';
}
counter++;
}
}
legend_html += '
';
$('#places-' + placeTypeFilter).html(legend_html);
$(document).foundation('reflow');
}
};
// When the window has finished loading create our google map below
google.maps.event.addDomListener(window, 'load', gmaps.init(0));
$(document).foundation({
tab: {
callback: function (tab) {
var hash = tab.context.hash;
var placeType = hash.split('-')[1];
deleteMarkers();
gmaps.init(placeType);
// setAllMap(map);
}
}
});
// Sets the map on all markers in the array.
function setAllMap(map) {
for (var i = 0; i < markers.length; i++) {
markers[i].setMap(map);
}
}
// Removes the markers from the map, but keeps them in the array.
function clearMarkers() {
setAllMap(null);
}
// Shows any markers currently in the array.
function showMarkers() {
setAllMap(map);
}
// Deletes all markers in the array by removing references to them.
function deleteMarkers() {
clearMarkers();
markers = [];
}
// This function generates a link to a Larger Google Map defaulting to directions mode
function directionsLink(loc) {
var href = 'maps.google.com/maps?f=d&hl=en&saddr=&daddr=';
// concatinate address
href += encodeURIComponent(loc[1].replace('
', ','));
// lat, long, zoom
href += '@' + loc[2] + ',' + loc[3] + '&ie=UTF8&z=15';
// return link
return '';
}
// This function picks up the click and opens the corresponding info window
function locate(i) {
google.maps.event.trigger(markers[i], 'click');
}
$(function () {
if (window.location.hash == '#map') {
$('a[href="#campus-map"]').click();
window.location.hash = '#campus-map';
}
});