<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">var zoomFactor = 2.0;
var maxZoom = ((200*largeWidth)/normalWidth)/200;
var minTempZoom = (zoomFactor*largeWidth)/normalWidth;

if (minTempZoom &gt;= 1)
{
maxZoom = maxZoom*zoomFactor;
}
else
{
zoomFactor = normalWidth/largeWidth;
maxZoom = maxZoom*zoomFactor;
}
</pre></body></html>