diff --git a/all_themes_index.ts b/all_themes_index.ts index 88eb51251..db22f83da 100644 --- a/all_themes_index.ts +++ b/all_themes_index.ts @@ -3,6 +3,7 @@ import AllThemesGui from "./UI/AllThemesGui" import { QueryParameters } from "./Logic/Web/QueryParameters" import StatisticsGUI from "./UI/StatisticsGUI" import { FixedUiElement } from "./UI/Base/FixedUiElement" +import {PdfExportGui} from "./UI/BigComponents/PdfExportGui"; const layout = QueryParameters.GetQueryParameter("layout", undefined).data ?? "" const customLayout = QueryParameters.GetQueryParameter("userlayout", undefined).data ?? "" @@ -42,6 +43,12 @@ if (mode.data === "statistics") { console.log("Statistics mode!") new FixedUiElement("").AttachTo("centermessage") new StatisticsGUI().SetClass("w-full h-full pointer-events-auto").AttachTo("topleft-tools") +} else if(mode.data === "pdf"){ + new FixedUiElement("").AttachTo("centermessage") + const div = document.createElement("div") + div.id = "extra_div_for_maps" + new PdfExportGui(div.id).AttachTo("topleft-tools") + document.getElementById("topleft-tools").appendChild(div) } else { new AllThemesGui().setup() } diff --git a/langs/nl.json b/langs/nl.json index bc8cfc008..4faf003ee 100644 --- a/langs/nl.json +++ b/langs/nl.json @@ -53,7 +53,7 @@ "add_images": "Voeg foto's toe met een paar klikken", "attributes": "Attributen worden getoond op begrijpbare wijze", "edit": "Foute of verouderde gegevens? Aanpassen kan hier", - "question": "Is een attribuut nog niet gekend? MapComplete toont een vraag", + "question": "Is een attribuut nog niet gekend?\nMapComplete toont een vraag", "see_images": "Toont afbeeldingen van eerdere bijdragers, Wikipedia, Mapillary, ...", "wikipedia": "Gelinkte Wikipedia-artikelen worden getoond" }, diff --git a/test.ts b/test.ts index a21df4f36..e69de29bb 100644 --- a/test.ts +++ b/test.ts @@ -1,6 +0,0 @@ -import MinimapImplementation from "./UI/Base/MinimapImplementation"; -import {PdfExportGui} from "./UI/BigComponents/PdfExportGui"; - -MinimapImplementation.initialize() - -new PdfExportGui("extradiv").AttachTo("maindiv")