I have Many GMSPolygon
inside my google map. Now i want to check for one specific polygon that is it inside(fully inside) any of the other polygons. Also need to find out that which other polygons are intersecting with boundaries to this polygon, and other polygon which are neither intersecting, neither inside given polygon nor covering this polygon.
Can anyone have idea how to do this?
EDIT:
I got the library/code to do the above same thing for MKPolygon, you can see it over here: https://github.com/geeksweep/MKPolygon-GSPolygonIntersections
Now, I am thinking that i should convert whole GMSPolygon into MKPolygon and apply this library's code to get the required result. But I think this is not proper way for doing this. Do anyone have any idea to do this in very simple manner.