diff --git a/CHANGELOG.md b/CHANGELOG.md index 630066a..47f0d45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ### Change Log for Node-RED Worldmap + - v2.38.0 - Return client headers as part of connect message. - v2.37.4 - Fix sessionid specific data not to be sent on reload/refresh - v2.37.3 - Fix hang on layer change - v2.37.2 - If custom layer is only layer then show it automatically. Issue #230 diff --git a/README.md b/README.md index a54c364..58689d4 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ Feel free to [![](https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D% ### Updates +- v2.38.0 - Return client headers as part of connect message. - v2.37.4 - Fix sessionid specific data not to be sent on reload/refresh - v2.37.3 - Fix hang on layer change - v2.37.2 - If custom layer is only layer then show it automatically. Issue #230 diff --git a/package.json b/package.json index 3e08fb3..058a3cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-red-contrib-web-worldmap", - "version": "2.37.4", + "version": "2.38.0", "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", diff --git a/worldmap/worldmap.js b/worldmap/worldmap.js index 9344d2f..c2db405 100644 --- a/worldmap/worldmap.js +++ b/worldmap/worldmap.js @@ -751,10 +751,6 @@ map.on('moveend', function() { map.on('locationfound', onLocationFound); map.on('locationerror', onLocationError); -//map.on('contextmenu', function(e) { -// ws.send(JSON.stringify({action:"rightclick", lat:e.latlng.lat.toFixed(5), lon:e.latlng.lng.toFixed(5)})); -//}); - // single right click to add a marker var addmenu = "Add marker
"; if (navigator.onLine) { addmenu += '
MilSymbol SIDC generator'; } @@ -809,6 +805,10 @@ var addToForm = function(n,v) { form[n] = v; } +// map.on('click', function(e) { +// ws.send(JSON.stringify({action:"click", lat:e.latlng.lat.toFixed(5), lon:e.latlng.lng.toFixed(5)})); +// }); + // allow double right click to zoom out (if enabled) // single right click opens a message window that adds a marker var rclicked = false;