Various small bug fixes

This commit is contained in:
Pieter Vander Vennet 2021-10-15 15:20:08 +02:00
commit 5ac035be20
5 changed files with 31 additions and 18 deletions

View file

@ -279,6 +279,7 @@ export default class SimpleMetaTagger {
return true; // Our job is done, lets unregister! return true; // Our job is done, lets unregister!
} catch (e) { } catch (e) {
console.warn("Error while parsing opening hours of ", tags.id, e); console.warn("Error while parsing opening hours of ", tags.id, e);
delete tags._isOpen
tags["_isOpen"] = "parse_error"; tags["_isOpen"] = "parse_error";
} }

View file

@ -559,9 +559,15 @@ export default class LayerConfig {
} }
if (iconOverlay.badge) { if (iconOverlay.badge) {
const badgeParts: BaseUIElement[] = []; const badgeParts: BaseUIElement[] = [];
const partDefs = iconOverlay.then const renderValue = iconOverlay
.then
.GetRenderValue(tgs) .GetRenderValue(tgs)
.txt.split(";")
if(renderValue === undefined){
continue;
}
const partDefs = renderValue.txt.split(";")
.filter((prt) => prt != ""); .filter((prt) => prt != "");
for (const badgePartStr of partDefs) { for (const badgePartStr of partDefs) {

View file

@ -139,6 +139,12 @@ export default class DefaultGUI {
features: state.homeLocation, features: state.homeLocation,
enablePopups: false, enablePopups: false,
}) })
state.leafletMap.addCallbackAndRunD(_ => {
// Lets assume that all showDataLayers are initialized at this point
state.selectedElement.ping()
return true;
})
} }

View file

@ -146,7 +146,7 @@ export default class ShowDataLayer {
try { try {
this.geoLayer.addData(feat); this.geoLayer.addData(feat);
} catch (e) { } catch (e) {
console.error("Could not add ", feat, "to the geojson layer in leaflet") console.error("Could not add ", feat, "to the geojson layer in leaflet due to", e, e.stack)
} }
} }

View file

@ -1,17 +1,17 @@
{ {
"id": "home_location", "id": "home_location",
"description": "Meta layer showing the home location of the user", "description": "Meta layer showing the home location of the user",
"minzoom": 0, "minzoom": 0,
"source": { "source": {
"osmTags": "user:home=yes" "osmTags": "user:home=yes"
}, },
"icon": { "icon": {
"render": "circle:white;./assets/svg/home.svg" "render": "circle:white;./assets/svg/home.svg"
}, },
"iconSize": { "iconSize": {
"render": "20,20,center" "render": "20,20,center"
}, },
"color": { "color": {
"render": "#00f" "render": "#00f"
} }
} }