Can't upload geojson file

Hi


I'm trying to send to review my app without success. when I try to upload my geojson file, which is formatted like this:

http://pastebin.com/j0Mmeday


the iTunesConnect doesn't let me save the file and beside the upload field I'm seeing a red warning icon saying:

"your routing app coverage file must be in the geojson format"


This is very frustrating, it's since this morning that I'm trying to uploading my update

I've also tried with the standard example file provided by Apple, and it keeps saying the same error.

Any help would be appreciated

I'm having the same problem is 10 days. Please tell me what is the solution ???

Is the file name case in this format, exactly: example.GeoJSON

Same problem here..


Yes I've also tried with changing the extension in example.GeoJSON, try to remove space and tabs from the text file, validate the geojson file with many online tools, but nothing happen.. I've also try to copy and paste the example that apple provide at this page:


https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/LocationAwarenessPG/ProvidingDirections/ProvidingDirections.html


but I have the same error.. I begin to think that this could be a bug in the new version of iTunes Connect..

I tried the same thing with me. The problem still continues. 😐

Same problem here!!! 😠

I am experiencing the same problem, and I am using the example json file for submission as well. I mean, there are so many follow up here, why no one ever give out an explanation? everyone gave up on doing release?

Hello,

I just ran into the exact same issue, and might have found an answer for you. After reading through the documentation and getting frustrated, I decided to just copy and past the example GeoJSON file from the Apple docs and replace the coordinates with my own.

Docs: https://developer.apple.com/library/archive/documentation/UserExperience/Conceptual/LocationAwarenessPG/ProvidingDirections/ProvidingDirections.html

Example GeoJSON:

{ "type": "MultiPolygon",
  "coordinates": [
    [[[-122.7, 37.3], [-121.9, 37.3], [-121.9, 37.9], [-122.7, 37.9], [-122.7, 37.3]]],
    [[[-87.9, 41.5], [-87.3, 41.5], [-87.3, 42.1], [-87.9, 42.1], [-87.9, 41.5]]]
    ]
}

Now I'm not sure if the answer was removing unnecessary tabs/spaces, and copying the example code fixed the issue. Or, as I might be suspecting, that the coordinates for each polygon need to be on the same line. My GeoJSON looked like yours with the latitudes and longitudes broken up one on each line, but all the examples I see from Apple have all their coordinates together like this.

This gave me a headache today, so I hope this answer can help somebody in the future.

Good luck out there!

Had the same problem, the solution was simple and was unexpected...

Just rename your file to have a .geojson extension.

In other words, submitting "My File.txt" or "My File.json" would NOT work, but submitting "My File.geojson" worked fine for me.

The content would be something like this:

{ "type": "MultiPolygon", "coordinates": [ [ [ [ XX.XXXXX, YY.YYYYYY ], [ XX.XXXXXXX, YY.YYYYYYY ], [ 15.732421875, 55.7765730186677 ], [ 3.33984375, 55.7765730186677 ], [ X.XXXXXXX, Y.YYYYYYYY ] ] ] ] }

Where X and Y are whatever coordinates you like to cover.

I hope this helps.

Cheers Heider

Can't upload geojson file
 
 
Q