Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
dceejay committed Aug 25, 2023
1 parent 4aa3403 commit d3259b7
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
### Change Log for Node-RED Worldmap

- v2.42.1 - Remove extraneous debug logging, fix KMZ icons
- v2.42.0 - Add handling for TAK type spots, waypoints, alerts, sensors. Better KML/KMZ handling.
- v2.41.0 - Bump leaflet libs to latest stable (1.9.4)
- v2.40.1 - Fix missing countries overlay when starting disconnected.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Feel free to [![](https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%

### Updates

- v2.42.1 - Remove extraneous debug logging, fix KMZ icons
- v2.42.0 - Add handling for TAK type spots, waypoints, alerts, sensors. Better KML/KMZ handling.
- v2.41.0 - Bump leaflet libs to latest stable (1.9.4)
- v2.40.1 - Fix missing countries overlay when starting disconnected.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-red-contrib-web-worldmap",
"version": "2.42.0",
"version": "2.42.1",
"description": "A Node-RED node to provide a web page of a world map for plotting things on.",
"dependencies": {
"@turf/bezier-spline": "~6.5.0",
Expand Down
3 changes: 1 addition & 2 deletions worldmap/leaflet/leaflet-kmz.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion worldmap/worldmap.js
Original file line number Diff line number Diff line change
Expand Up @@ -2651,7 +2651,6 @@ function doCommand(cmd) {
});
let arr;
if (cmd.map.hasOwnProperty("kmz")) {
console.log("KMZ",typeof cmd.map.kmz)
if (typeof cmd.map.kmz === "string") {
arr = new Uint8Array(cmd.map.kmz.length);
for (let i=0; i<cmd.map.kmz.length; i++) {
Expand Down

0 comments on commit d3259b7

Please sign in to comment.