Passenger Transit Counts (Feb 2017)

The Passenger Transit Counts (Feb 2017) dataset is consumed from an external ArcGIS web service via the following URL and ID

https://services.northeastoceandata.org/arcgis1/rest/services/MarineTransportation/MapServer?time=1485993600000
ID: 99

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(
    "Passenger Transit Counts (Feb 2017)",
    "https://services.northeastoceandata.org/arcgis1/rest/services/MarineTransportation/MapServer/export?time=1485993600000",
    {
        layers: "show:99",
        transparent: true
    },
    {
        isBaseLayer: false
    }
);
map.addLayer(layer);