hi, im new to Node-Red and Worldmap and playing around with NATO Symbols and some GPS Tracking. Just set al this up and mak an small flow. dLooks pretty good right now:
But can I change the color of the Icon Name? Black on dark satelite Image ist not so good to see. Is ist possible to change color and size? Used "Color" in payload, but this just changes color of trackes and direction indicators. And as you can see the name is not complete at first Letter.
This is my function which creats payload:
var newMsg = { payload: {
"name" : msg.payload.deviceName,
"lat": msg.payload.object.Lat,
"lon" : msg.payload.object.Lon,
"SIDC": "SFGPUCII----",
"color": "#FF0000",
"options": { "fillOpacity":0.8 },
}
};
return newMsg;