function removeMarkers() {
    console.log('Removing markers from map...');
    $.each(markers, function(i, m) {
        m.setMap(null);
    });