Make checkboxes hide map layers

This commit is contained in:
Eli Ribble 2026-02-04 23:57:44 +00:00
parent df58424dd7
commit af516242d3
No known key found for this signature in database
2 changed files with 26 additions and 4 deletions

View file

@ -215,6 +215,11 @@ class MapMultipoint extends HTMLElement {
});
this._markers = [marker];
}
SetLayoutProperty(layout, property, value) {
return this._map.setLayoutProperty(layout, property, value);
}
}
customElements.define('map-multipoint', MapMultipoint);