Show layer selector only if more that one layer (#411)
Co-authored-by: Pierre-Yves Rollo <dev@pyrollo.com>
This commit is contained in:
parent
a7b5226fd1
commit
e1c9bdb8bd
@ -7,9 +7,11 @@ function onchange(e){
|
|||||||
m.route.set("/map/:layerId/:zoom/:lon/:lat", params);
|
m.route.set("/map/:layerId/:zoom/:lon/:lat", params);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
view: function(){
|
view: function(){
|
||||||
|
// Display layer selector only if there is choice
|
||||||
|
if (LayerManager.layers.length <= 1)
|
||||||
|
return null;
|
||||||
|
|
||||||
const layers = LayerManager.layers.map(layer => m(
|
const layers = LayerManager.layers.map(layer => m(
|
||||||
"option",
|
"option",
|
||||||
|
Loading…
Reference in New Issue
Block a user