Authored by Justin R. Miller

fixes #239: properly close interior polygons

... ... @@ -81,7 +81,7 @@
for (CLLocation *point in interiorPolygon.points)
[aShape addLineToCoordinate:point.coordinate];
[aShape closePath];
[aShape addLineToCoordinate:interiorPolygon.coordinate];
}
aShape.fillColor = [UIColor colorWithRed:0 green:0 blue:1 alpha:0.2];
... ...