Theaters

Explore:
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Map View
A grid of four squares
Grid View
Icon of a numbered list
List View

Theater Listings

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
/** * The element containing all the location links. * * @type {Element} */ const mapCollectionWrapper = document.getElementById('map-collection-wrapper'); if (mapCollectionWrapper) { const handleMutations = (mutationsList) => { for (const mutation of mutationsList) { if (mutation.type === 'childList') { removeMapMarkers(); addMapMarkers(); } } }; const observer = new MutationObserver(handleMutations); observer.observe(mapCollectionWrapper, { childList: true, subtree: true }); }