I am working with MKPolygon for having overlay on UIMapView. Below is my current code :
CLLocationCoordinate2D commuterLotCoords[5]={
CLLocationCoordinate2DMake(39.048019,-76.850535),
CLLocationCoordinate2DMake(39.048027,-76.850234),
CLLocationCoordinate2DMake(39.047407,-76.850181),
CLLocationCoordinate2DMake(39.047407,-76.8505),
CLLocationCoordinate2DMake(39.048019,-76.850535)
};
MKPolygon *commuterPoly1 = [MKPolygon polygonWithCoordinates:commuterLotCoords count:5];
[commuterPoly1 setTitle:@"first"];
[self.overlayMap addOverlay:commuterPoly1];
Now, I am implementing json web service which will result me all the longitudes and latitudes. But I am unable to create the overlay from those points. Can anybody please help me with implementing overlay using dynamic points.
Below is my service response :
{
response_code: 1,
response_message: "successful",
districts: [
{
district_id: "1",
district_name: "Austin",
Points: [
{
latitude: "39.048019",
longitude: "-76.850535"
},
{
latitude: "39.048027",
longitude: "-76.850234"
}
]
},
{
district_id: "2",
district_name: "Tulsa",
Points: [
{
latitude: "39.048019",
longitude: "-76.850535"
},
{
latitude: "39.048027",
longitude: "-76.850234"
},
{
latitude: "39.047407",
longitude: "-76.850181"
},
{
latitude: "39.047407",
longitude: "-76.8505"
},
{
latitude: "39.048019",
longitude: "-76.850535"
}
]
}
]
}
Thanks in advance
Try this... Create Dictionary from json and pass it in this function... it will return you MKPolygon