don't zoom in too far when centering on a single photo

This commit is contained in:
Martin Raifer
2023-08-07 16:00:10 +02:00
parent 1572835a48
commit e94087c5d4
+1 -1
View File
@@ -224,7 +224,7 @@ export function svgLocalPhotos(projection, context, dispatch) {
.reduce((a, b) => a.extend(b));
const map = context.map();
map.centerZoom(extent.center(), map.trimmedExtentZoom(extent));
map.centerZoom(extent.center(), Math.min(18, map.trimmedExtentZoom(extent)));
};
init();