Continuing the discussion from Worldmap Tracks Node:
I have a working node-red-contrib-web-worldmap using the tracks node. I'm just looking for an elegant way to refresh the track when loading the map (essentially force the track node to output its currently held payload). Because the track node only sends output to the map when a point is sent to it, the map is empty when it first loads. I don't want to re-send points to the track node because I don't necessarily have a new position (the newest position is already stored in the track node). I don't want a duplicate point in the track.
If I re-send the last point with the same timestamp, will it replace that point or make a duplicate? Since the track node only outputs a line as an array of coordinates, it does not seem to reatin knowledge of the location timestamps. So it seems to me that any new point sent to the track node will create a duplicate.
It seems like there should be a simple way to trigger the track node to output its last payload without sending it new data.
Thanks