JasonSanford/leaflet-vector-layers

Does leaflet-vector-layers support ArcGIS Rest services?

Closed this issue · 3 comments

I'd like to use the FEMA flood hazards ArcGIS Rest services: https://hazards.fema.gov/femaportal/wps/portal/NFHLWMS since their WMS service doesn't support web mercator projection (EPSG:900913 or EPSG:3857) but their ArcGis Rest service does.

Can leaflet-vector-layers utilize these services?

Thanks

This library is all about vectors, so no WMS support. Sorry.

FWIW- You can add that FEMA Flood Hazards ArcGIS Rest service to a Leaflet map by using the esri-leaflet plugin.

var femaFlood = L.esri.dynamicMapLayer("https://hazards.fema.gov/gis/nfhl/rest/services/public/NFHL/MapServer", {
    opacity : 0.5
}).addTo(map);

Thanks @bmcbride that worked great!