2024-01-29 19:28:41 -06:00
|
|
|
import wi from './wi/layer.js';
|
2024-01-30 00:14:55 -06:00
|
|
|
|
|
|
|
import castlerocklayers from './castle-rock/index.js';
|
2024-01-29 19:28:41 -06:00
|
|
|
|
|
|
|
const dot_cams = {
|
|
|
|
name: "State DOT Cameras",
|
|
|
|
layers: [
|
2024-01-30 00:14:55 -06:00
|
|
|
...castlerocklayers,
|
2024-01-29 19:28:41 -06:00
|
|
|
{
|
|
|
|
name: "WisDOT/511WI",
|
|
|
|
layer: wi,
|
|
|
|
},
|
|
|
|
],
|
2024-01-29 23:31:17 -06:00
|
|
|
details: `<a href="#" onclick="this.closest('details').querySelectorAll('ul li input').forEach(e => e.checked || e.click()); return false;">Enable All</a>`,
|
2024-01-29 19:28:41 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
export default dot_cams;
|