diff --git a/code/boot.js b/code/boot.js
index 6ec417fb..0539fa42 100644
--- a/code/boot.js
+++ b/code/boot.js
@@ -3,6 +3,8 @@
// created a basic framework. All of these functions should only ever
// be run once.
+// Used to disable on multitouch devices
+window.showZoom = true;
window.setupBackButton = function() {
var c = window.isSmartphone()
@@ -156,7 +158,7 @@ window.setupMap = function() {
window.map = new L.Map('map', $.extend(getPosition(),
- {zoomControl: !window.isSmartphone()}
+ {zoomControl: window.showZoom}
));
var addLayers = {};
diff --git a/mobile/res/values/strings.xml b/mobile/res/values/strings.xml
index 7b991044..b8c76f70 100644
--- a/mobile/res/values/strings.xml
+++ b/mobile/res/values/strings.xml
@@ -34,6 +34,8 @@
Misc
Plugins
Available plugins
+ Show zoom control
+ Shows +/- buttons even on multitouch capable devices.
Display user location
Show users position on map
Force https
diff --git a/mobile/res/xml/preferences.xml b/mobile/res/xml/preferences.xml
index 278cb821..3e1efe86 100644
--- a/mobile/res/xml/preferences.xml
+++ b/mobile/res/xml/preferences.xml
@@ -12,12 +12,17 @@
+
-
+