Is there a way to divide a map into square grids and retrieve latitude/longitude information from there? [closed]

懵懂的女人 提交于 2019-12-03 14:24:23

Consider for example the area that is between latitude 89N and latitude 90N (the north pole). The earth's circumference at latitude 90N is 0, hence, this the total area is circle-shaped.

It is not possible to divide any part of a sphere or an ellipsoid surface into non-overlapping, adjusting rectangles.

Not quite sure if this is what you are asking or not, but you can get the latitude and longitude of the Current View of the globe.

var view = ge.getView().copyAsLookAt(ge.ALTITUDE_RELATIVE_TO_GROUND);
view.getLatitude();
view.getLongitude();

Here is some more information about the current view and the camera: https://developers.google.com/earth/documentation/camera_control

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!