function pixelToGeo(point) {
let mapWidth = 900;
let mapHeight = 600;
let mapLonLeft = -180;
let mapLonRight = 180;
let mapLonDelta = mapLonRight - mapLonLeft;
let mapLatBottom = 180;
let mapLatBottomRadian = (mapLatBottom * Math.PI) / 180;
let tx = point[0];
let ty = point[1];
let worldMapRadius = ((mapWidth / mapLonDelta) * 360) / (2 * Math.PI);
let mapOffsetY =
(worldMapRadius / 2) *
Math.log(
(1 + Math.sin(mapLatBottomRadian)) / (1 - Math.sin(mapLatBottomRadian))
);
let equatorY = mapHeight + -300;
let a = (equatorY - ty) / worldMapRadius;
let lat = (180 / Math.PI) * (2 * Math.atan(Math.exp(a)) - Math.PI / 2);
let lon = mapLonLeft + (tx / mapWidth) * mapLonDelta;
return [lon, lat];
}