New to Node-RED and am tooling around with the WorldMap Node. I'm interested to see if I can overlay this map service: https://nowcoast.noaa.gov/arcgis/rest/services/nowcoast/radar_meteo_imagery_nexrad_time/MapServer
This is my logic, I get no errors but also no map.
msg.payload = {};
msg.payload.command = {};
var mURL = "https://nowcoast.noaa.gov/arcgis/rest/services/nowcoast/radar_meteo_imagery_nexrad_time/MapServer";
msg.payload.command.map = {overlay:"Weather", url:mURL, layer:"Weather"};
return msg;
If this is not the right forum I apologize in advanced,
Thanks
Steve