2014-12-10 10:30:20 +01:00
|
|
|
|
|
|
|
<script type="text/x-red" data-template-name="geohash">
|
2018-01-31 12:18:30 +01:00
|
|
|
<div class="form-row">
|
|
|
|
<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>
|
2014-12-10 10:30:20 +01:00
|
|
|
<div class="form-row">
|
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
|
|
|
|
<input type="text" id="node-input-name" placeholder="Name">
|
|
|
|
</div>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/x-red" data-help-name="geohash">
|
|
|
|
<p>A function that encodes lat,lon to and from a geohash.</p>
|
2016-03-02 14:27:48 +01:00
|
|
|
<p>If the <code>msg.payload</code> is a string it tries to see if it is a geohash -
|
2014-12-10 10:30:20 +01:00
|
|
|
if so it tries to decode it and outputs a payload object containing
|
|
|
|
<ul><li>latitude<li>longitude<li>error.latitude<li>error.longitude</ul></p>
|
2016-03-02 14:27:48 +01:00
|
|
|
<p>If the <code>msg.payload</code> is an object with properties lat or latitude and lon or longitude
|
|
|
|
- it will add a <code>geohash</code> property to the payload.</p>
|
|
|
|
<p>The precision can be set by <code>msg.payload.precision</code> from 1 to 9.
|
2014-12-10 10:30:20 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('geohash',{
|
2014-12-13 00:15:09 +01:00
|
|
|
category: 'location',
|
2014-12-10 10:30:20 +01:00
|
|
|
color:"#DEBD5C",
|
|
|
|
defaults: {
|
2018-01-31 12:18:30 +01:00
|
|
|
name: {value:""},
|
|
|
|
property: {value:"payload",required:true}
|
2014-12-10 10:30:20 +01:00
|
|
|
},
|
|
|
|
inputs:1,
|
|
|
|
outputs:1,
|
2018-02-08 16:52:30 +01:00
|
|
|
icon: "parser-geohash.png",
|
2014-12-10 10:30:20 +01:00
|
|
|
label: function() {
|
|
|
|
return this.name||"geohash";
|
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name?"node_label_italic":"";
|
2018-02-03 00:38:26 +01:00
|
|
|
},
|
|
|
|
oneditprepare: function() {
|
|
|
|
$("#node-input-property").typedInput({default:'msg',types:['msg']});
|
2014-12-10 10:30:20 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|