I face this problem, from the API I'm getting an extens JSON with one object called coordinates, this object is an array that includes an array o array.
To be more clear look at this example:
"coordinates": [
[
[
-0.087118,
51.508823
]
Or in this pic you can see it better

So now I'm trying to parse it using GSON and I'm not being success. Can anyone give me an idea how to create the class for this?
Thank you
[[[x,y],[x,y]...]]or[[[x,y]],[[x,y]],...]