We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4185fdc commit 162f3b1Copy full SHA for 162f3b1
app/src/components/OLExportButton.vue
@@ -46,7 +46,7 @@
46
<div>
47
Copy and paste this code into the map <b>layers</b> field of the storytelling editor:
48
</div>
49
- <div
+ <div v-if="dialog"
50
class="pa-3"
51
style="background-color: #ddd;font-family: monospace;font-size: 11px;max-height: 300px; overflow-y: auto;">
52
{{ layersConfig }}
@@ -283,7 +283,7 @@ Text describing the current step of the tour and why it is interesting what the
283
if (foundType === 'Vector') {
284
// We can't export a function style function
285
// only flat styles, for now we ignore this case
286
- if (typeof l.getStyle !== 'function') {
+ if (typeof l.getStyle() !== 'function') {
287
layerConfig.style = l.getStyle();
288
}
289
0 commit comments