rebase and format

This commit is contained in:
Brandon Liu
2025-06-01 00:14:30 -04:00
parent a133ac7198
commit b71cb1fe94

View File

@@ -86,7 +86,7 @@ function parseTile(data: ArrayBuffer, vectorLayers: string[]): Layer[] {
} }
// sort so that points and linestrings are above polygons // sort so that points and linestrings are above polygons
features.sort((a,b) => a.type > b.type ? -1 : 1); features.sort((a, b) => (a.type > b.type ? -1 : 1));
layers.push({ name: name, features: features }); layers.push({ name: name, features: features });
} }