spellings

This commit is contained in:
Dave Conway-Jones 2021-09-11 13:50:27 +01:00
parent 7fa64ee1f1
commit bdb8e5a074
No known key found for this signature in database
GPG Key ID: 88BA2B8A411BE9FF
3 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,7 @@
### Change Log for Node-RED Worldmap
- v2.15.6 - Tidy up geoJson handling a bit more.
- v2.15.5 - Fix SDIC icons to accept unicoded icons as labels.
- v2.15.5 - Fix SIDC icons to accept unicoded icons as labels.
- v2.15.4 - Let clear heatmap command do what it says.
- v2.15.3 - Fix panit command to work, try to use alt units, popup alignments.
- v2.15.0 - let speed be text and specify units if required (kt,kn,knots,mph,kmh,kph) default m/s.

View File

@ -12,7 +12,7 @@ map web page for plotting "things" on.
### Updates
- v2.15.6 - Tidy up geoJson handling a bit more.
- v2.15.5 - Fix SDIC icons to accept unicoded icons as labels.
- v2.15.5 - Fix SIDC icons to accept unicoded icons as labels.
- v2.15.4 - Let clear heatmap command do what it says.
- v2.15.3 - Fix panit command to work, try to use alt units, popup alignments.
- v2.15.0 - let speed be text and specify units if required (kt,kn,knots,mph,kmh,kph) default m/s.

View File

@ -2532,7 +2532,6 @@ function doGeojson(n,g,l,o) {
l.bindPopup('<pre style="overflow-x: scroll">'+JSON.stringify(f.properties,null,' ').replace(/[\{\}"]/g,'')+'</pre>');
}
}
if (o && o.hasOwnProperty("clickable") && o.clickable === true) {
l.on('click', function (e) {
ws.send(JSON.stringify({action:"clickgeo",name:n,type:f.type,properties:f.properties,geometry:f.geometry}));