Cannot update .geojson file for app submission on App Store

一世执手 提交于 2019-11-29 12:44:45

Based on the following:

1) The Latitude goes from -90 into +90 (i.e. this is where you stand on the middle of the globe going either up or down) (AKA vertically).

2) The Longitude goes from 0 to 360 (i.e. standing where you are, and going around the globe in a circle horizontally.

3) The Polygon usually has 4 points, however, in this case it would be 5 whereas the first and last points are the same to denote a closed-polygon.

4) Adding the apple requirements of ( "type": "MultiPolygon" ) plus coordinates,

5) You would end up with the following contents of a file:

{ "type": "MultiPolygon",
    "coordinates": [
                    [[
                       [-360.0000,-90.0000]
                      ,[-360.0000, 90.0000]
                      ,[-000.0000, 90.0000]
                      ,[-000.0000,-90.0000]
                      ,[-360.0000,-90.0000]
                    ]]
                    ]
}

Therefore, start your text editor, and then copy and paste the above, save the file into World.geojson and then upload.

Mine worked fine.

Enjoy! Heider

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