mapboard
mapboard copied to clipboard
Make a single `layers` option in config
Right now layers are configured based on layer type:
tiledLayers: [],
featureLayers: [],
The problem is that you can't apply a global order to layers of different types. So, make this a single list:
layers: [
{
type: 'feature',
}
...
]