let you specify both point(icon) and radius
to Close #8 and update fa-icons to 4.7.0
This commit is contained in:
parent
688353832d
commit
e1cc6209bf
@ -6,6 +6,8 @@ map web page for plotting "things" on.
|
|||||||
|
|
||||||
![Map Image](https://dceejay.github.io/pages/images/redmap.png)
|
![Map Image](https://dceejay.github.io/pages/images/redmap.png)
|
||||||
|
|
||||||
|
### Changes
|
||||||
|
- v1.0.21 - If you specify range and icon then you get a marker and a range circle, if you just specify range with no icon, you just get a circle, and vice versa.
|
||||||
- v1.0.20 - Add buildings overlay.
|
- v1.0.20 - Add buildings overlay.
|
||||||
- v1.0.19 - Add circle mode - specify name, lat, lon and radius.
|
- v1.0.19 - Add circle mode - specify name, lat, lon and radius.
|
||||||
- v1.0.18 - Correct .photourl property to match .photoUrl as per docs
|
- v1.0.18 - Correct .photourl property to match .photoUrl as per docs
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-contrib-web-worldmap",
|
"name" : "node-red-contrib-web-worldmap",
|
||||||
"version" : "1.0.20",
|
"version" : "1.0.21",
|
||||||
"description" : "A Node-RED node to provide a web page of a world map for plotting things on.",
|
"description" : "A Node-RED node to provide a web page of a world map for plotting things on.",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
"express": "4.*",
|
"express": "4.*",
|
||||||
|
@ -79,6 +79,7 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
RED.keyboard.add("*",/* w */ 87,{ctrl:true, shift:true},function() { window.open(document.location.protocol+"//"+document.location.host+RED.settings.httpNodeRoot+"/worldmap") });
|
||||||
RED.nodes.registerType('worldmap',{
|
RED.nodes.registerType('worldmap',{
|
||||||
category: 'location',
|
category: 'location',
|
||||||
color:"darksalmon",
|
color:"darksalmon",
|
||||||
|
@ -728,14 +728,6 @@ function setMarker(data) {
|
|||||||
polygons[data.name] = polyarea;
|
polygons[data.name] = polyarea;
|
||||||
layers[lay].addLayer(polyarea);
|
layers[lay].addLayer(polyarea);
|
||||||
}
|
}
|
||||||
else if (data.hasOwnProperty("radius")) {
|
|
||||||
if (data.hasOwnProperty("lat") && data.hasOwnProperty("lon")) {
|
|
||||||
var colac = data.iconColor || "#910000";
|
|
||||||
var polycirc = L.circle(new L.LatLng((data.lat*1), (data.lon*1)), data.radius*1, {stroke:true, weight:2, color:colac, fillColor:colac, fillOpacity:0.2, clickable:false});
|
|
||||||
polygons[data.name] = polycirc;
|
|
||||||
layers[lay].addLayer(polycirc);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (data.hasOwnProperty("sdlat") && data.hasOwnProperty("sdlon")) {
|
else if (data.hasOwnProperty("sdlat") && data.hasOwnProperty("sdlon")) {
|
||||||
var ellipse = L.ellipse(new L.LatLng((data.lat*1), (data.lon*1)), [200000*data.sdlon*Math.cos(data.lat*Math.PI/180), 200000*data.sdlat], 0, {color:(data.iconColor || "blue"), weight:2} );
|
var ellipse = L.ellipse(new L.LatLng((data.lat*1), (data.lon*1)), [200000*data.sdlon*Math.cos(data.lat*Math.PI/180), 200000*data.sdlat], 0, {color:(data.iconColor || "blue"), weight:2} );
|
||||||
ellipse.on('click', function(e) {
|
ellipse.on('click', function(e) {
|
||||||
@ -748,6 +740,14 @@ function setMarker(data) {
|
|||||||
layers[lay].addLayer(ellipse);
|
layers[lay].addLayer(ellipse);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
if (data.hasOwnProperty("radius")) {
|
||||||
|
if (data.hasOwnProperty("lat") && data.hasOwnProperty("lon")) {
|
||||||
|
var colac = data.iconColor || "#910000";
|
||||||
|
var polycirc = L.circle(new L.LatLng((data.lat*1), (data.lon*1)), data.radius*1, {stroke:true, weight:2, color:colac, fillColor:colac, fillOpacity:0.2, clickable:false});
|
||||||
|
polygons[data.name] = polycirc;
|
||||||
|
layers[lay].addLayer(polycirc);
|
||||||
|
}
|
||||||
|
}
|
||||||
//console.log("handling",data.name);
|
//console.log("handling",data.name);
|
||||||
if (typeof data.coordinates == "object") { ll = new L.LatLng(data.coordinates[1],data.coordinates[0]); }
|
if (typeof data.coordinates == "object") { ll = new L.LatLng(data.coordinates[1],data.coordinates[0]); }
|
||||||
else if (data.hasOwnProperty("lat") && data.hasOwnProperty("lon")) { ll = new L.LatLng((data.lat*1), (data.lon*1)); }
|
else if (data.hasOwnProperty("lat") && data.hasOwnProperty("lon")) { ll = new L.LatLng((data.lat*1), (data.lon*1)); }
|
||||||
@ -841,6 +841,7 @@ function setMarker(data) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// remove icon from list of properties, then add all others to popup
|
// remove icon from list of properties, then add all others to popup
|
||||||
|
if (data.hasOwnProperty("icon") || (!data.hasOwnProperty("radius"))) {
|
||||||
if (data.hasOwnProperty("icon")) { delete data.icon; }
|
if (data.hasOwnProperty("icon")) { delete data.icon; }
|
||||||
if (data.hasOwnProperty("iconColor")) { delete data.iconColor; }
|
if (data.hasOwnProperty("iconColor")) { delete data.iconColor; }
|
||||||
for (var i in data) {
|
for (var i in data) {
|
||||||
@ -867,10 +868,11 @@ function setMarker(data) {
|
|||||||
rightmenuMarker.setLatLng(e.latlng);
|
rightmenuMarker.setLatLng(e.latlng);
|
||||||
map.openPopup(rightmenuMarker);
|
map.openPopup(rightmenuMarker);
|
||||||
});
|
});
|
||||||
if (heatAll || map.hasLayer(layers[lay])) { heat.addLatLng(ll); }
|
|
||||||
|
|
||||||
|
if (heatAll || map.hasLayer(layers[lay])) { heat.addLatLng(ll); }
|
||||||
markers[data.name] = marker;
|
markers[data.name] = marker;
|
||||||
layers[lay].addLayer(marker);
|
layers[lay].addLayer(marker);
|
||||||
|
}
|
||||||
|
|
||||||
popped = stay;
|
popped = stay;
|
||||||
if (popped) {
|
if (popped) {
|
||||||
|
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 382 KiB After Width: | Height: | Size: 434 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,5 +1,5 @@
|
|||||||
CACHE MANIFEST
|
CACHE MANIFEST
|
||||||
# date: Oct 18th v1.0.20
|
# date: Nov 11th v1.0.21
|
||||||
|
|
||||||
CACHE:
|
CACHE:
|
||||||
index.html
|
index.html
|
||||||
|
Loading…
Reference in New Issue
Block a user