You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In tilestrata/lib/TileLayer.js:7 is this layer name validation:
if(!/^[a-zA-Z0-9_\-]+$/.test(name)){thrownewError('Invalid layer name "'+name+'" (must match /^[a-zA-Z0-9_\-]+$)');}
I wonder if there is a reason that this is so restrictive and doesn't allow for example ',' (comma) or ';' (semicolon)? I think the URI spec allows them, as far as I understand it (?)
The text was updated successfully, but these errors were encountered:
In
tilestrata/lib/TileLayer.js:7
is this layer name validation:I wonder if there is a reason that this is so restrictive and doesn't allow for example ',' (comma) or ';' (semicolon)? I think the URI spec allows them, as far as I understand it (?)
The text was updated successfully, but these errors were encountered: