地图投影

球形投影:
function(λ, φ) {
return [
λ,
Math.log(Math.tan(π / 4 + φ / 2))
];
}

常用世界地图应该是墨卡托投影
墨卡托投影就是将地球投影到(中心光源)圆柱上,再将圆柱展开成平面