Merge branch 'develop' into feature/nsi

This commit is contained in:
Pieter Vander Vennet 2024-05-13 18:45:51 +02:00
commit 641f4cf849
2 changed files with 7 additions and 3 deletions

View file

@ -1,5 +1,9 @@
import Constants from "../Models/Constants"
export interface MaprouletteTask {
name: string,
description: string,
instruction: string
}
export default class Maproulette {
public static readonly defaultEndpoint = "https://maproulette.org/api/v2"

View file

@ -35,7 +35,7 @@ import StatisticsPanel from "./BigComponents/StatisticsPanel"
import AutoApplyButton from "./Popup/AutoApplyButton"
import { LanguageElement } from "./Popup/LanguageElement/LanguageElement"
import FeatureReviews from "../Logic/Web/MangroveReviews"
import Maproulette from "../Logic/Maproulette"
import Maproulette, { MaprouletteTask } from "../Logic/Maproulette"
import SvelteUIElement from "./Base/SvelteUIElement"
import { BBoxFeatureSourceForLayer } from "../Logic/FeatureSource/Sources/TouchesBboxFeatureSource"
import { Feature, GeoJsonProperties } from "geojson"
@ -1039,7 +1039,7 @@ console.log(">>> ",helpTexts.join("\n\n"))
return undefined
}
const challenge = Stores.FromPromise(
Utils.downloadJsonCached(
Utils.downloadJsonCached<MaprouletteTask>(
`${Maproulette.defaultEndpoint}/challenge/${parentId}`,
24 * 60 * 60 * 1000
)