diff --git a/Models/Constants.ts b/Models/Constants.ts
index 33a52c40f6..48c52eebfd 100644
--- a/Models/Constants.ts
+++ b/Models/Constants.ts
@@ -2,7 +2,7 @@ import { Utils } from "../Utils";
export default class Constants {
- public static vNumber = "0.8.4";
+ public static vNumber = "0.8.4-rc1";
// The user journey states thresholds when a new feature gets unlocked
public static userJourney = {
diff --git a/UI/BigComponents/Basemap.ts b/UI/BigComponents/Basemap.ts
index 2da6415b6d..a4afd6ec8b 100644
--- a/UI/BigComponents/Basemap.ts
+++ b/UI/BigComponents/Basemap.ts
@@ -3,6 +3,7 @@ import {UIEventSource} from "../../Logic/UIEventSource";
import Loc from "../../Models/Loc";
import BaseLayer from "../../Models/BaseLayer";
import BaseUIElement from "../BaseUIElement";
+import {FixedUiElement} from "../Base/FixedUiElement";
export class Basemap {
@@ -35,9 +36,8 @@ export class Basemap {
);
this.map.attributionControl.setPrefix(
- " | OpenStreetMap");
+ "A");
- extraAttribution.AttachTo('leaflet-attribution')
const self = this;
currentLayer.addCallbackAndRun(layer => {
@@ -77,6 +77,7 @@ export class Basemap {
lastClickLocation?.setData({lat: e.latlng.lat, lon: e.latlng.lng});
});
+ extraAttribution.AttachTo('leaflet-attribution')
}
diff --git a/index.css b/index.css
index 47178a06f7..347c27a5d2 100644
--- a/index.css
+++ b/index.css
@@ -82,6 +82,10 @@ html, body {
box-sizing: initial !important;
}
+.leaflet-control-attribution {
+ display: block ruby;
+}
+
svg, img {
box-sizing: content-box;
width: 100%;