forked from node-red/node-red-nodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
70-geohash.html
44 lines (41 loc) · 1.72 KB
/
70-geohash.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<script type="text/x-red" data-template-name="geohash">
<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>
<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>
<p>If the <code>msg.payload</code> is a string it tries to see if it is a geohash -
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>
<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.
</script>
<script type="text/javascript">
RED.nodes.registerType('geohash',{
category: 'location',
color:"#DEBD5C",
defaults: {
name: {value:""},
property: {value:"payload",required:true}
},
inputs:1,
outputs:1,
icon: "parser-geohash.png",
label: function() {
return this.name||"geohash";
},
labelStyle: function() {
return this.name?"node_label_italic":"";
},
oneditprepare: function() {
$("#node-input-property").typedInput({default:'msg',types:['msg']});
}
});
</script>