Seasonal Housing Vulnerability Rank (6ft SLR)

The Seasonal Housing Vulnerability Rank (6ft SLR) dataset is consumed from an external ArcGIS web service via the following URL and ID

https://oceandata.rad.rutgers.edu/arcgis/rest/services/Socioeconomic/Colgan_CoastalMidACounties/MapServer
ID: 2

OpenLayers

If you are developing in OpenLayers, you will want to use the OpenLayers ArcGIS93Rest class. An example of your solution might look similar to the code below.

layer = new OpenLayers.Layer.ArcGIS93Rest(
    "Seasonal Housing Vulnerability Rank (6ft SLR)",
    "https://oceandata.rad.rutgers.edu/arcgis/rest/services/Socioeconomic/Colgan_CoastalMidACounties/MapServer/export",
    {
        layers: "show:2",
        transparent: true
    },
    {
        isBaseLayer: false
    }
);
map.addLayer(layer);