Skip to content

Commit

Permalink
Fix: Show up to 15 levels of mapget and aux tile Ids
Browse files Browse the repository at this point in the history
  • Loading branch information
fklebert committed Jan 16, 2025
1 parent acb8a25 commit 280db00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions erdblick_app/app/coordinates.panel.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,12 +159,12 @@ export class CoordinatesPanelComponent {
}
}
}
for (let level = 0; level < 15; level++) {
for (let level = 0; level < 16; level++) {
this.mapgetTileIds.set(`Mapget TileId (level ${level})`,
coreLib.getTileIdFromPosition(this.longitude, this.latitude, level));
}
if (this.coordinatesService.auxiliaryTileIdsFun) {
for (let level = 0; level < 15; level++) {
for (let level = 0; level < 16; level++) {
const levelData: Map<string, bigint> =
this.coordinatesService.auxiliaryTileIdsFun(this.longitude, this.latitude, level).reduce(
(map: Map<string, bigint>, [key, value]: [string, bigint]) => {
Expand Down

0 comments on commit 280db00

Please sign in to comment.