forked from MapComplete/MapComplete
Merge develop
This commit is contained in:
commit
93ae7441d1
98 changed files with 2446 additions and 725 deletions
|
@ -7,4 +7,6 @@ export default interface BaseLayer {
|
|||
max_zoom: number,
|
||||
min_zoom: number;
|
||||
feature: any,
|
||||
isBest?: boolean,
|
||||
category?: "map" | "osmbasedmap" | "photo" | "historicphoto" | string
|
||||
}
|
|
@ -2,7 +2,7 @@ import { Utils } from "../Utils";
|
|||
|
||||
export default class Constants {
|
||||
|
||||
public static vNumber = "0.8.3/bike-infra";
|
||||
public static vNumber = "0.8.4/bike-infra";
|
||||
|
||||
// The user journey states thresholds when a new feature gets unlocked
|
||||
public static userJourney = {
|
||||
|
|
8
Models/TileRange.ts
Normal file
8
Models/TileRange.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
export interface TileRange {
|
||||
xstart: number,
|
||||
ystart: number,
|
||||
xend: number,
|
||||
yend: number,
|
||||
total: number,
|
||||
zoomlevel: number
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue