We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 896c37a commit 9d7ff66Copy full SHA for 9d7ff66
src/main/js/journeymap.js
@@ -573,6 +573,7 @@ class Journeymap {
573
strokeOpacity: polygon.strokeOpacity,
574
strokeWidth: polygon.strokeWidth,
575
label: polygon.label,
576
+ fontColor: polygon.fontColor,
577
fillColor: polygon.fillColor,
578
fillOpacity: polygon.fillOpacity,
579
})
src/main/resources/assets/journeymap/web/index.html
@@ -30,7 +30,7 @@
30
<v-style v-if="visiblePolygons">
31
<template v-for="(polygon) in polygons">
32
.leaflet-tooltip.{{ polygon.className }} {
33
- color: {{ polygon.fillColor }};
+ color: {{ polygon.fontColor }};
34
border-color: {{ polygon.strokeColor }};
35
}
36
</template>
0 commit comments