Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: multiple fixes related to map export function #2722

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/src/components/OLExportButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<div>
Copy and paste this code into the map <b>layers</b> field of the storytelling editor:
</div>
<div
<div v-if="dialog"
class="pa-3"
style="background-color: #ddd;font-family: monospace;font-size: 11px;max-height: 300px; overflow-y: auto;">
{{ layersConfig }}
Expand Down Expand Up @@ -283,7 +283,7 @@ Text describing the current step of the tour and why it is interesting what the
if (foundType === 'Vector') {
// We can't export a function style function
// only flat styles, for now we ignore this case
if (typeof l.getStyle !== 'function') {
if (typeof l.getStyle() !== 'function') {
layerConfig.style = l.getStyle();
}
}
Expand Down
Loading