function BestMapView(bounds, mapWidth, mapHeight, padding, tileSize) {
if (bounds == null || bounds.length < 4) {
return {
center: [0, 0],
zoom: 1
};
}
var boundsDeltaX;
var centerLat;
var centerLon;
if (bounds[2] > bounds[0]) {
boundsDeltaX = bounds[2] - bounds[0];
centerLon = (bounds[2] + bounds[0]) / 2;
} else {
boundsDeltaX = 360 - (bounds[0] - bounds[2]);
centerLon = (((bounds[2] + bounds[0]) / 2 + 360) % 360) - 180;
}
var ry1 = Math.log(
(Math.sin((bounds[1] * Math.PI) / 180) + 1) /
Math.cos((bounds[1] * Math.PI) / 180)
);
var ry2 = Math.log(
(Math.sin((bounds[3] * Math.PI) / 180) + 1) /
Math.cos((bounds[3] * Math.PI) / 180)
);
var ryc = (ry1 + ry2) / 2;
centerLat = (Math.atan(Math.sinh(ryc)) * 180) / Math.PI;
var resolutionHorizontal = boundsDeltaX / (mapWidth - padding * 2);
var vy0 = Math.log(Math.tan(Math.PI * (0.25 + centerLat / 360)));
var vy1 = Math.log(Math.tan(Math.PI * (0.25 + bounds[3] / 360)));
var zoomFactorPowered =
(mapHeight * 0.5 - padding) / (40.7436654315252 * (vy1 - vy0));
var resolutionVertical = 360.0 / (zoomFactorPowered * tileSize);
var resolution = Math.max(resolutionHorizontal, resolutionVertical);
var zoom = Math.log2(360 / (resolution * tileSize));
return {
center: [centerLon, centerLat],
zoom: zoom
};
}