Clinics & Locations

The spine & brain coalition

We understand that finding the right location is essential when it comes to your healthcare needs. That's why we have formed strategic alliances with multiple well established clinics across the Metropolitan Area, ensuring that you can easily find a location that suits you best. Discover the clinic nearest to you and experience our exceptional care tailored to your specific needs.

explore

Outpatient Offices

<div class="data---slug w-dyn-bind-empty">woodland-park</div> <div class="data---latitude w-dyn-bind-empty">40.89116990283425</div> <div class="data---longitude w-dyn-bind-empty">-74.21254594535631</div>
Woodland Park
1167 McBride Ave
Woodland Park, NJ 07424
Get directions
<div class="data---slug w-dyn-bind-empty">bronxcare-health-and-wellness-center</div> <div class="data---latitude w-dyn-bind-empty">40.84348811499273</div> <div class="data---longitude w-dyn-bind-empty">-73.90982078943141</div>
BronxCare Health and Wellness Center
199 Mount Eden Parkway
Bronx, NY 10457
Get directions
<div class="data---slug w-dyn-bind-empty">nassau-university-medical-center</div> <div class="data---latitude w-dyn-bind-empty">40.72674994552675</div> <div class="data---longitude w-dyn-bind-empty">-73.55354221827317</div>
Nassau University Medical Center
2201 Hempstead Turnpike
East Meadow, NY 11554
Get directions
<div class="data---slug w-dyn-bind-empty">richmond-university-medical-center</div> <div class="data---latitude w-dyn-bind-empty">40.63582479304978</div> <div class="data---longitude w-dyn-bind-empty">-74.1058269999208</div>
Richmond University Medical Center
355 Bard Ave
Staten Island, NY 10310
Get directions
<div class="data---slug w-dyn-bind-empty">yonkers</div> <div class="data---latitude w-dyn-bind-empty">40.9678049212518</div> <div class="data---longitude w-dyn-bind-empty">-73.88394291736466</div>
Yonkers
970 N Broadway
Yonkers, NY 10701
Get directions

Surgical Sites

<div class="data---slug w-dyn-bind-empty">bronxcare-health-system</div> <div class="data---latitude w-dyn-bind-empty"></div> <div class="data---longitude w-dyn-bind-empty"></div>
BronxCare Health System
1650 Grand Concourse
Bronx, NY 10457
Get directions
<div class="data---slug w-dyn-bind-empty">jamaica-hospital-medical-center</div> <div class="data---latitude w-dyn-bind-empty">40.70072841620758</div> <div class="data---longitude w-dyn-bind-empty">-73.81623673215407</div>
Jamaica Hospital Medical Center
8900 Van Wyck Expy
Richmond Hill, NY 11418
Get directions
<div class="data---slug w-dyn-bind-empty">lenox-hill</div> <div class="data---latitude w-dyn-bind-empty">40.77408264738872</div> <div class="data---longitude w-dyn-bind-empty">-73.9607022502231</div>
Lenox Hill
100 E 77th St.
New York, NY 10075
Get directions
<div class="data---slug w-dyn-bind-empty">nassau-university-medical-center-2</div> <div class="data---latitude w-dyn-bind-empty">40.72674997413518</div> <div class="data---longitude w-dyn-bind-empty">-73.55351002883623</div>
Nassau University Medical Center
2201 Hempstead Tpke
East Meadow, NY 11554
Get directions
<div class="data---slug w-dyn-bind-empty">northern-westchester-hospital</div> <div class="data---latitude w-dyn-bind-empty">41.196493394935054</div> <div class="data---longitude w-dyn-bind-empty">-73.72549506895916</div>
Northern Westchester Hospital
400 Main St.
Mt. Kisco, NY 10549
Get directions
<div class="data---slug w-dyn-bind-empty">phelps</div> <div class="data---latitude w-dyn-bind-empty">41.1096961328046</div> <div class="data---longitude w-dyn-bind-empty">-73.86276773418027</div>
PHELPS
701 N Broadway
Sleepy Hollow, NY 10591
Get directions
<div class="data---slug w-dyn-bind-empty">richmond-university-medical-center-2</div> <div class="data---latitude w-dyn-bind-empty">40.63580850958774</div> <div class="data---longitude w-dyn-bind-empty">-74.10582699999999</div>
Richmond University Medical Center
355 Bard Ave.
Staten Island, NY 10310
Get directions
<div class="data---slug w-dyn-bind-empty">st-johns-riverside-hospital</div> <div class="data---latitude w-dyn-bind-empty">40.96900589374175</div> <div class="data---longitude w-dyn-bind-empty">-73.886490861173</div>
St. John's Riverside Hospital
967 N Broadway
Yonkers, NY 10701
Get directions
<div class="data---slug w-dyn-bind-empty">westchester-medical-center</div> <div class="data---latitude w-dyn-bind-empty">41.086871914520216</div> <div class="data---longitude w-dyn-bind-empty">-73.8052401010559</div>
Westchester Medical Center
100 Woods Rd.
Valhalla, NY 10595
Get directions
<div class="data---slug w-dyn-bind-empty">white-plains-hospital</div> <div class="data---latitude w-dyn-bind-empty">41.0260663915487</div> <div class="data---longitude w-dyn-bind-empty">-73.76951110735621</div>
White Plains Hospital
41 E Post Rd
White Plains, NY 10601
Get directions
<script async defer src="https://maps.googleapis.com/maps/api/js?key[AIzaSyDQUGn-CZ6sXa6H2ND7CBpKgIJyz_Ovfrc]&callback=initMap" type="text/javascript"></script>
  // Run code when page loads
  window.addEventListener('load', function () {

		// Create a locations array
    var locations = []

		// Add .location-wrapper class to the location Collection Item
    var dynPlaces = document.querySelectorAll('.w-dyn-item.location-item');   

  	// Define variables for the map info window
    dynPlaces.forEach( function(elem) {

			// Create places array
      var place = [];

  		// Define variables for each place
      var dataTitle = elem.querySelector('.data---slug').innerText; // Define slug for targeting the information window
      var dataLat = Number(elem.querySelector('.data---latitude').innerText); // Define latitude point for pin
      var dataLong = Number(elem.querySelector('.data---longitude').innerText); // Define longitude point for pin
      var infoWindowContent = elem.querySelector('.data---info-window').innerHTML; // Define content wrapper for the information window

      place.push(dataTitle, infoWindowContent, dataLat, dataLong); // Add variables to each place

      locations.push(place);   // Add each place to the locations array
    });

		// Map settings
    var map = new google.maps.Map(document.getElementById('map'), {
      mapTypeId: google.maps.MapTypeId.ROADMAP,
      streetViewControl: false,
      mapTypeControl: false,
      fullscreenControl: false,
      scrollwheel: false,
      
      // Json map styling via https://mapstyle.withgoogle.com
      styles: [
        {
          "elementType": "geometry",
          "stylers": [
            {
              "color": "#f5f5f5"
            }
          ]
        },
        {
          "elementType": "labels.icon",
          "stylers": [
            {
              "visibility": "off"
            }
          ]
        },
        {
          "elementType": "labels.text.fill",
          "stylers": [
            {
              "color": "#616161"
            }
          ]
        },
        {
          "elementType": "labels.text.stroke",
          "stylers": [
            {
              "color": "#f5f5f5"
            }
          ]
        },
        {
          "featureType": "administrative.land_parcel",
          "elementType": "labels.text.fill",
          "stylers": [
            {
              "color": "#bdbdbd"
            }
          ]
        },
        {
          "featureType": "administrative.province",
          "elementType": "geometry.stroke",
          "stylers": [
            {
              "color": "#bababa"
            },
            {
              "visibility": "on"
            },
            {
              "weight": 1.5
            }
          ]
        },
        {
          "featureType": "poi",
          "stylers": [
            {
              "color": "#bababa"
            },
            {
              "visibility": "on"
            }
          ]
        },
        {
          "featureType": "poi",
          "elementType": "geometry.fill",
          "stylers": [
            {
              "color": "#eeeeee"
            }
          ]
        },
        {
          "featureType": "poi",
          "elementType": "labels.text.fill",
          "stylers": [
            {
              "color": "#757575"
            }
          ]
        },
        {
          "featureType": "poi",
          "elementType": "labels.text.stroke",
          "stylers": [
            {
              "color": "#f5f5f5"
            }
          ]
        },
        {
          "featureType": "poi.park",
          "elementType": "geometry",
          "stylers": [
            {
              "color": "#e5e5e5"
            }
          ]
        },
        {
          "featureType": "poi.park",
          "elementType": "labels.text.fill",
          "stylers": [
            {
              "color": "#9e9e9e"
            }
          ]
        },
        {
          "featureType": "road",
          "stylers": [
            {
              "visibility": "simplified"
            }
          ]
        },
        {
          "featureType": "road",
          "elementType": "geometry",
          "stylers": [
            {
              "color": "#ffffff"
            }
          ]
        },
        {
          "featureType": "road.arterial",
          "elementType": "labels.text.fill",
          "stylers": [
            {
              "color": "#757575"
            }
          ]
        },
        {
          "featureType": "road.highway",
          "elementType": "geometry",
          "stylers": [
            {
              "color": "#dadada"
            }
          ]
        },
        {
          "featureType": "road.highway",
          "elementType": "labels.text.fill",
          "stylers": [
            {
              "color": "#616161"
            }
          ]
        },
        {
          "featureType": "road.local",
          "elementType": "labels.text.fill",
          "stylers": [
            {
              "color": "#9e9e9e"
            }
          ]
        },
        {
          "featureType": "transit.line",
          "elementType": "geometry",
          "stylers": [
            {
              "color": "#e5e5e5"
            }
          ]
        },
        {
          "featureType": "transit.station",
          "elementType": "geometry",
          "stylers": [
            {
              "color": "#eeeeee"
            }
          ]
        },
        {
          "featureType": "water",
          "elementType": "geometry",
          "stylers": [
            {
              "color": "#c9c9c9"
            }
          ]
        },
        {
          "featureType": "water",
          "elementType": "labels.text.fill",
          "stylers": [
            {
              "color": "#9e9e9e"
            }
          ]
        }
      ]
    });

    // Create info windows
    var infowindow = new google.maps.InfoWindow();

 		// Style markers (reference svgMarker as icon in createMarker function to use)
    /* 
    const svgMarker = {
      path: "M3.18236 3.94954C1.59126 5.64764 0.594653 8.12129 0.633351 10.448C0.71416 15.3102 2.90579 17.1508 6.41061 23.8426C7.67311 26.7873 8.99079 29.9032 10.244 35.0637C10.4182 35.8249 10.588 36.532 10.6666 36.5933C10.7451 36.6546 10.915 35.945 11.0892 35.1838C12.3424 30.0232 13.6601 26.9099 14.9226 23.9652C18.4274 17.2733 20.619 15.4327 20.6998 10.5705C20.7385 8.24379 19.7395 5.76766 18.1484 4.06956C16.3308 2.12977 13.5893 0.694173 10.6666 0.634142C7.74386 0.574072 4.99993 2.00974 3.18236 3.94954Z",
      fillColor: "#1169FE",
      fillOpacity: 1,
      strokeWeight: 1.26462,
      strokeColor: "#004FD6",
      rotation: 0,
      scale: 1,
      anchor: new google.maps.Point(15, 30),
    };
    */

		// Create markers
    function createMarker(latlng, html) {
      var marker = new google.maps.Marker({
        position: latlng,
        map: map,
        icon: "https://cdn.prod.website-files.com/631fe6ec99d4fc7b8a51759c/6324065e9ce860443217c6f7_Google_Maps_pin%201.svg"
      });

 		// Define info window for each marker
      google.maps.event.addListener(marker, 'click', function() {
        infowindow.setContent(html);
        infowindow.open(map, marker);
      });
      return marker;
    }

    gmarkers = [];
    for (var i = 0; i < locations.length; i++) {
      gmarkers[locations[i][0]] =
        createMarker(new google.maps.LatLng(locations[i][2], locations[i][3]), // passing lat and long
                                locations[i][1]); // passing Info-window information
    }
    
    // Create map bounds and center map
    var bounds = new google.maps.LatLngBounds();
    var northwest = new google.maps.LatLng(33.7859225, -84.4166867); // Northwest bound
    var southeast = new google.maps.LatLng(33.744205, -84.273109); // Southeast bound
    bounds.extend(northwest);
    bounds.extend(southeast);
    map.fitBounds(bounds);
    map.setCenter(bounds.getCenter());
    
  }, false);