R
R
Rashad Khalafov2012-10-11 18:51:05
iOS
Rashad Khalafov, 2012-10-11 18:51:05

Routing App Coverage File?

Good afternoon. I just went to itunesconnect and saw a new "Routing App Coverage File" block under the app icon, and below the app screenshots, the "App Review Information" block. What are these innovations? The application has been in “Waiting” for 13 days, although before that it took no more than 6 days for a response. Thank you in advance for your help.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
R
Rashad Khalafov, 2012-10-12
@viperrsh

I am sure that many will face this problem. Here is the solution: GeoJSON is a description of cartographic objects in JSON format link to the manual (in Russian) . The doc describes all the keys in detail. For Apple, two keys are important: type is the type of the object (for Apple, only the MultiPolygon value) and coordinates are the coordinates of each point of the object. If you enter the rest of the keys, then Apple swears at the wrong data format. In the coordinates key, we specify the coordinates of each polygon inside the multi-polygon.
Here is an example for Azerbaijan:

{ 
  "type": "MultiPolygon",
  "coordinates":
  [
    [
      [
        [45.001987,39.740004],[45.298145,39.471751],[45.739978,39.473999],[45.735379,39.319719],[46.143623,38.741201],[45.457722,38.874139],[44.952688,39.335765],[44.79399,39.713003],[45.001987,39.740004]
      ]
    ],
    [
      [
        [47.373315,41.219732],[47.815666,41.151416],[47.987283,41.405819],[48.584353,41.80887],[49.110264,41.282287],[49.618915,40.572924],[50.08483,40.526157],[50.392821,40.256561],[49.569202,40.176101],[49.395259,39.399482],[49.223228,39.049219],[48.856532,38.815486],[48.883249,38.320245],[48.634375,38.270378],[48.010744,38.794015],[48.355529,39.288765],[48.060095,39.582235],[47.685079,39.508364],[46.50572,38.770605],[46.483499,39.464155],[46.034534,39.628021],[45.610012,39.899994],[45.891907,40.218476],[45.359175,40.561504],[45.560351,40.81229],[45.179496,40.985354],[44.97248,41.248129],[45.217426,41.411452],[45.962601,41.123873],[46.501637,41.064445],[46.637908,41.181673],[46.145432,41.722802],[46.404951,41.860675],[46.686071,41.827137],[47.373315,41.219732]
      ]
    ]
    ]
}

Particular attention should be paid to the fact that the coordinates of the beginning and end of each polygon are equal. Good luck.

D
demonit, 2012-10-24
@demonit

I didn’t see an answer to the question why Routing App Coverage File is needed at all

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question