Skip to content

Commit 2335e7e

Browse files
author
Dave Conway-Jones
committed
let clear heatmap command clear heatmap...
to address Issue dceejay#170
1 parent 2c38c62 commit 2335e7e

File tree

5 files changed

+27
-196
lines changed

5 files changed

+27
-196
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
### Change Log for Node-RED Worldmap
22

3+
- v2.15.4 - Let clear heatmap command do what it says.
34
- v2.15.3 - Fix panit command to work, try to use alt units, popup alignments.
45
- v2.15.0 - let speed be text and specify units if required (kt,kn,knots,mph,kmh,kph) default m/s.
56
- v2.14.0 - Let geojson features be clickable if added as overlay.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ map web page for plotting "things" on.
1111

1212
### Updates
1313

14+
- v2.15.4 - Let clear heatmap command do what it says.
1415
- v2.15.3 - Fix panit command to work, try to use alt units, popup alignments.
1516
- v2.15.0 - let speed be text and specify units if required (kt,kn,knots,mph,kmh,kph) default m/s.
1617
- v2.14.0 - Let geojson features be clickable if added as overlay.

examples/Map in Dashboard.json

+1-177
Original file line numberDiff line numberDiff line change
@@ -1,177 +1 @@
1-
[
2-
{
3-
"id": "9b2a29cc.3c53a8",
4-
"type": "worldmap",
5-
"z": "f59603d8.0a6a",
6-
"name": "",
7-
"lat": "",
8-
"lon": "",
9-
"zoom": "",
10-
"layer": "OSM",
11-
"cluster": "",
12-
"maxage": "",
13-
"usermenu": "hide",
14-
"panit": "true",
15-
"x": 750,
16-
"y": 420,
17-
"wires": []
18-
},
19-
{
20-
"id": "1714967f.e691ea",
21-
"type": "inject",
22-
"z": "f59603d8.0a6a",
23-
"name": "",
24-
"topic": "",
25-
"payload": "",
26-
"payloadType": "str",
27-
"repeat": "",
28-
"crontab": "",
29-
"once": false,
30-
"onceDelay": "",
31-
"x": 290,
32-
"y": 360,
33-
"wires": [
34-
[
35-
"1b24ad2f.198453"
36-
]
37-
]
38-
},
39-
{
40-
"id": "1b24ad2f.198453",
41-
"type": "function",
42-
"z": "f59603d8.0a6a",
43-
"name": "",
44-
"func": "// create random position\nvar lat = 51 + Math.random() * 0.2;\nvar lon = -1.45 + Math.random() * 0.2;\nmsg.payload={\n lat:lat, \n lon:lon, \n name:\"Mike\", \n icon:\"male\", \n color:\"#000\"};\nreturn msg;",
45-
"outputs": 1,
46-
"noerr": 0,
47-
"x": 470,
48-
"y": 420,
49-
"wires": [
50-
[
51-
"9b2a29cc.3c53a8",
52-
"de5c4044.d4e0f"
53-
]
54-
]
55-
},
56-
{
57-
"id": "5af27cae.299144",
58-
"type": "inject",
59-
"z": "f59603d8.0a6a",
60-
"name": "",
61-
"topic": "",
62-
"payload": "",
63-
"payloadType": "str",
64-
"repeat": "",
65-
"crontab": "",
66-
"once": true,
67-
"onceDelay": "",
68-
"x": 270,
69-
"y": 480,
70-
"wires": [
71-
[
72-
"f1be23c1.dd096"
73-
]
74-
]
75-
},
76-
{
77-
"id": "4bab3415.afdf9c",
78-
"type": "ui_template",
79-
"z": "f59603d8.0a6a",
80-
"group": "cd81d08b.eebb3",
81-
"name": "",
82-
"order": 0,
83-
"width": "6",
84-
"height": "6",
85-
"format": "<div ng-bind-html=\"msg.payload | trusted\"></div>",
86-
"storeOutMessages": true,
87-
"fwdInMessages": true,
88-
"templateScope": "local",
89-
"x": 640,
90-
"y": 480,
91-
"wires": [
92-
[]
93-
]
94-
},
95-
{
96-
"id": "f1be23c1.dd096",
97-
"type": "template",
98-
"z": "f59603d8.0a6a",
99-
"name": "",
100-
"field": "payload",
101-
"fieldType": "msg",
102-
"format": "handlebars",
103-
"syntax": "mustache",
104-
"template": "<iframe src=\"../worldmap\" height=300px ></iframe>",
105-
"x": 470,
106-
"y": 480,
107-
"wires": [
108-
[
109-
"4bab3415.afdf9c"
110-
]
111-
]
112-
},
113-
{
114-
"id": "de3a90c8.8179c",
115-
"type": "ui_button",
116-
"z": "f59603d8.0a6a",
117-
"name": "",
118-
"group": "cd81d08b.eebb3",
119-
"order": 0,
120-
"width": 0,
121-
"height": 0,
122-
"label": "Move Mike",
123-
"color": "",
124-
"icon": "fa-male",
125-
"payload": "",
126-
"payloadType": "str",
127-
"topic": "",
128-
"x": 290,
129-
"y": 420,
130-
"wires": [
131-
[
132-
"1b24ad2f.198453"
133-
]
134-
]
135-
},
136-
{
137-
"id": "223f301c.54ea9",
138-
"type": "comment",
139-
"z": "f59603d8.0a6a",
140-
"name": "How to embed Map in Dashboard",
141-
"info": "This example shows how to embed the Worldmap \ninto a template node within the `node-red-dashboard`\n\nThe first flow creates a dashboard button that \ngenerates a randon position, with the required \nicon, and passes that to the worldmap. The\nmap is configured to automatically pan to the\nposition of any point that arrives.\n\nThe second flow initialise the dashboard template\nwith the initial map and sets it to a more square shape\nby adjusting the height.",
142-
"x": 340,
143-
"y": 300,
144-
"wires": []
145-
},
146-
{
147-
"id": "de5c4044.d4e0f",
148-
"type": "worldmap-tracks",
149-
"z": "f59603d8.0a6a",
150-
"name": "",
151-
"depth": "5",
152-
"layer": "combined",
153-
"x": 610,
154-
"y": 380,
155-
"wires": [
156-
[
157-
"9b2a29cc.3c53a8"
158-
]
159-
]
160-
},
161-
{
162-
"id": "cd81d08b.eebb3",
163-
"type": "ui_group",
164-
"z": "f59603d8.0a6a",
165-
"name": "Default",
166-
"tab": "b34078e6.e60df8",
167-
"disp": true,
168-
"width": "6"
169-
},
170-
{
171-
"id": "b34078e6.e60df8",
172-
"type": "ui_tab",
173-
"z": "f59603d8.0a6a",
174-
"name": "Home",
175-
"icon": "dashboard"
176-
}
177-
]
1+
[{"id":"1714967f.e691ea","type":"inject","z":"64eed394.c7935c","name":"","repeat":"","crontab":"","once":false,"onceDelay":"","topic":"","payload":"","payloadType":"str","x":180,"y":800,"wires":[["1b24ad2f.198453"]]},{"id":"1b24ad2f.198453","type":"function","z":"64eed394.c7935c","name":"","func":"// create random position\nvar lat = 51 + Math.random() * 0.2;\nvar lon = -1.45 + Math.random() * 0.2;\nmsg.payload={\n lat:lat, \n lon:lon, \n name:\"Mike\", \n icon:\"male\", \n color:\"#000\"};\nreturn msg;","outputs":1,"noerr":0,"x":360,"y":860,"wires":[["de5c4044.d4e0f","e0ec963913cbf7a9"]]},{"id":"de3a90c8.8179c","type":"ui_button","z":"64eed394.c7935c","name":"","group":"cd81d08b.eebb3","order":0,"width":0,"height":0,"passthru":false,"label":"Move Mike","tooltip":"","color":"","bgcolor":"","icon":"fa-male","payload":"","payloadType":"str","topic":"","topicType":"str","x":180,"y":860,"wires":[["1b24ad2f.198453"]]},{"id":"223f301c.54ea9","type":"comment","z":"64eed394.c7935c","name":"How to embed Map in Dashboard","info":"This example shows how to embed the Worldmap \nwithin the `node-red-dashboard`\n\nThe flow creates a dashboard button that \ngenerates a randon position, with the required \nicon, and passes that to the worldmap. The\nmap is configured to automatically pan to the\nposition of any point that arrives.\n","x":230,"y":740,"wires":[]},{"id":"de5c4044.d4e0f","type":"worldmap-tracks","z":"64eed394.c7935c","name":"","depth":"5","layer":"combined","x":500,"y":820,"wires":[["e0ec963913cbf7a9"]]},{"id":"e0ec963913cbf7a9","type":"ui_worldmap","z":"64eed394.c7935c","group":"cd81d08b.eebb3","order":4,"width":0,"height":0,"name":"","lat":"","lon":"","zoom":"","layer":"","cluster":"","maxage":"","usermenu":"hide","layers":"hide","panit":"true","panlock":"false","zoomlock":"false","hiderightclick":"true","coords":"none","showgrid":"true","allowFileDrop":"false","path":"/worldmap","x":660,"y":860,"wires":[]},{"id":"cd81d08b.eebb3","type":"ui_group","z":"64eed394.c7935c","name":"Default","tab":"b34078e6.e60df8","order":1,"disp":true,"width":"6"},{"id":"b34078e6.e60df8","type":"ui_tab","z":"64eed394.c7935c","name":"Home","icon":"dashboard"}]

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-contrib-web-worldmap",
3-
"version": "2.15.3",
3+
"version": "2.15.4",
44
"description": "A Node-RED node to provide a web page of a world map for plotting things on.",
55
"dependencies": {
66
"cgi": "0.3.1",

worldmap/worldmap.js

+23-18
Original file line numberDiff line numberDiff line change
@@ -385,27 +385,32 @@ function doLock(v) {
385385

386386
// Remove old markers
387387
function doTidyUp(l) {
388-
var d = parseInt(Date.now()/1000);
389-
for (var m in markers) {
390-
if ((l && (l == markers[m].lay)) || typeof markers[m].ts != "undefined") {
391-
if ((l && (l == markers[m].lay)) || (markers[m].hasOwnProperty("ts") && (Number(markers[m].ts) < d) && (markers[m].lay !== "_drawing"))) {
392-
//console.log("STALE :",m);
393-
if (typeof polygons[m+"_"] != "undefined") {
394-
layers[polygons[m+"_"].lay].removeLayer(polygons[m+"_"]);
395-
delete polygons[m+"_"];
396-
}
397-
if (typeof polygons[m] != "undefined") {
398-
layers[markers[m].lay].removeLayer(polygons[m]);
399-
delete polygons[m];
388+
if (l === "heatmap") {
389+
heat.setLatLngs([]);
390+
}
391+
else {
392+
var d = parseInt(Date.now()/1000);
393+
for (var m in markers) {
394+
if ((l && (l == markers[m].lay)) || typeof markers[m].ts != "undefined") {
395+
if ((l && (l == markers[m].lay)) || (markers[m].hasOwnProperty("ts") && (Number(markers[m].ts) < d) && (markers[m].lay !== "_drawing"))) {
396+
//console.log("STALE :",m);
397+
if (typeof polygons[m+"_"] != "undefined") {
398+
layers[polygons[m+"_"].lay].removeLayer(polygons[m+"_"]);
399+
delete polygons[m+"_"];
400+
}
401+
if (typeof polygons[m] != "undefined") {
402+
layers[markers[m].lay].removeLayer(polygons[m]);
403+
delete polygons[m];
404+
}
405+
layers[markers[m].lay].removeLayer(markers[m]);
406+
delete markers[m];
400407
}
401-
layers[markers[m].lay].removeLayer(markers[m]);
402-
delete markers[m];
403408
}
404409
}
405-
}
406-
if (l) {
407-
if (layers[l]) { map.removeLayer(layers[l]); layercontrol.removeLayer(layers[l]); delete layers[l]; }
408-
if (overlays[l]) { map.removeLayer(overlays[l]); layercontrol.removeLayer(overlays[l]); delete overlays[l]; }
410+
if (l) {
411+
if (layers[l]) { map.removeLayer(layers[l]); layercontrol.removeLayer(layers[l]); delete layers[l]; }
412+
if (overlays[l]) { map.removeLayer(overlays[l]); layercontrol.removeLayer(overlays[l]); delete overlays[l]; }
413+
}
409414
}
410415
}
411416

0 commit comments

Comments
 (0)