UNPKG

photoswipe-deep-zoom-plugin

Version:

A plugin that adds tile-based zoom support to PhotoSwipe. Supports Deepzoom and Zoomify tile formats.

11 lines (9 loc) 188 B
export function getTileKey(x, y, z) { return x + '_' + y + '_' + z; } export function slideIsTiled(slide) { if (slide.data.tileUrl) { return true; } return false; }