mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
Add dedicated Worldmap mode
better handling of other types
This commit is contained in:
@@ -1,6 +1,13 @@
|
||||
|
||||
<script type="text/html" data-template-name="exif">
|
||||
<div class="form-row">
|
||||
<label for="node-input-mode"><i class="fa fa-dot-circle-o"></i> Mode</label>
|
||||
<select style="width:70%" id="node-input-mode">
|
||||
<option value="normal">Standard node</option>
|
||||
<option value="worldmap">Use with Worldmap-in node</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-row" id="node-exif-prop-select">
|
||||
<label for="node-input-property"><i class="fa fa-ellipsis-h"></i> <span data-i18n="node-red:common.label.property"></span></label>
|
||||
<input type="text" id="node-input-property" style="width:70%;"/>
|
||||
</div>
|
||||
@@ -17,6 +24,8 @@
|
||||
<p>The node then adds location data as <code>msg.location</code>, should the Exif data carry this information.
|
||||
This also includes an icon, bearing and field of view arc suitable for use in the worldmap node.
|
||||
The selected input property retains the original, unmodified image buffer.</p>
|
||||
<p>If configured to use the worldmap in node then the existing image payload will be replaced by the location
|
||||
object so that it can be fed back to the map directly.</p>
|
||||
</script>
|
||||
|
||||
<script type="text/javascript">
|
||||
@@ -25,6 +34,7 @@
|
||||
color:"#f1c2f0",
|
||||
defaults: {
|
||||
name: {value:""},
|
||||
mode: {value:"normal"},
|
||||
property: {value:"payload",required:true}
|
||||
},
|
||||
inputs:1,
|
||||
@@ -39,6 +49,13 @@
|
||||
oneditprepare: function() {
|
||||
if (this.property === undefined) { $("#node-input-property").val("payload"); }
|
||||
$("#node-input-property").typedInput({default:'msg',types:['msg']});
|
||||
|
||||
$("#node-input-mode").change(function() {
|
||||
if ($("#node-input-mode").val() === "worldmap") {
|
||||
$("#node-exif-prop-select").hide();
|
||||
}
|
||||
else { $("#node-exif-prop-select").show(); }
|
||||
});
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user