user interface: enable scrollwheel zoom. Disable on touch devices

This commit is contained in:
marc tobias 2016-01-21 14:47:55 +00:00
parent 9f1d3ac272
commit 8f0199008d

View File

@ -10,11 +10,9 @@ jQuery(document).on('ready', function(){
$('#q').focus();
map = new L.map('map', {
// center: [nominatim_map_init.lat || 0, nominatim_map_init.lon],
// zoom: nominatim_map_init.zoom,
attributionControl: false,
scrollWheelZoom: false,
touchZoom: false,
attributionControl: false, // moved to page footer
scrollWheelZoom: !L.Browser.touch,
touchZoom: false
});