diff --git a/public/js/components/LayerSelector.js b/public/js/components/LayerSelector.js index 98a1de6..57fb237 100644 --- a/public/js/components/LayerSelector.js +++ b/public/js/components/LayerSelector.js @@ -7,9 +7,11 @@ function onchange(e){ m.route.set("/map/:layerId/:zoom/:lon/:lat", params); } - export default { view: function(){ + // Display layer selector only if there is choice + if (LayerManager.layers.length <= 1) + return null; const layers = LayerManager.layers.map(layer => m( "option",