Skip to content
Merged
Show file tree
Hide file tree
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 photomap/frontend/static/javascript/umap.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import { debounce, getPercentile, isColorLight, makeDraggable } from "./utils.js

const UMAP_SIZES = {
big: { width: 800, height: 590 },
medium: { width: 440, height: 310 },
small: { width: 360, height: 210 },
medium: { width: 520, height: 310 },
small: { width: 440, height: 210 },
fullscreen: { width: window.innerWidth, height: window.innerHeight },
};
const landmarkCount = 18; // Maximum number of non-overlapping landmarks to show at any time
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- Titlebar -->
<div id="umapTitlebar">
<select id="semanticMapAlbumSelect" title="Switch album" aria-label="Switch album"></select>
<div style="display: flex; align-items: center; gap: 8px">
<div style="display: flex; align-items: center; gap: 3px">
<!-- Resizing icons -->
<button id="umapResizeFullscreen" title="Fullscreen" class="icon-btn">
<svg width="24" height="24" viewBox="0 0 24 24">
Expand Down
Loading