Remove mvt querystring parameter that we never used

This commit is contained in:
Bryan Housel
2019-02-07 10:48:19 -05:00
parent 8ec426bd9d
commit 3875ea565b

View File

@@ -138,9 +138,6 @@ export function utilStringQs(str) {
if (parts.length === 2) {
obj[parts[0]] = (null === parts[1]) ? '' : decodeURIComponent(parts[1]);
}
if (parts[0] === 'mvt') {
obj[parts[0]] = (parts[2] !== undefined) ? (decodeURIComponent(parts[1]) + '=' + decodeURIComponent(parts[2])) : (decodeURIComponent(parts[1]));
}
return obj;
}, {});
}