aboutsummaryrefslogtreecommitdiffstats
path: root/view/jot_geotag.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'view/jot_geotag.tpl')
-rw-r--r--view/jot_geotag.tpl7
1 files changed, 7 insertions, 0 deletions
diff --git a/view/jot_geotag.tpl b/view/jot_geotag.tpl
new file mode 100644
index 000000000..835cc9ebb
--- /dev/null
+++ b/view/jot_geotag.tpl
@@ -0,0 +1,7 @@
+
+ if(navigator.geolocation) {
+ navigator.geolocation.getCurrentPosition(function(position) {
+ $('#jot-coord').val(position.coords.latitude + ',' + position.coords.longitude);
+ });
+ }
+