]> git.openstreetmap.org Git - nominatim-ui.git/blobdiff - src/handlebar_helpers.js
display of geojson works
[nominatim-ui.git] / src / handlebar_helpers.js
index 4f11821b7bc81b0b6c6f6a3ba3da93458df2229d..f7997818c516c0ae7d407628b4735e76ff97b323 100644 (file)
@@ -128,7 +128,9 @@ Handlebars.registerHelper({
 
         var select = $('<select>');
         var option = jQuery('<option>', { value: '', text: '--'});
+        if (typeof(iSelectedZoom) === 'undefined') option.attr('selected', 'selected');
         option.appendTo(select);
+
         jQuery.each(aZoomLevels, function(i, title) {
             var option = jQuery('<option>', { value: i, text: i + ' ' + title });
             if (i == iSelectedZoom) option.attr('selected', 'selected');