This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id<MKOverlay>)overlay | |
{ | |
if ([overlay isKindOfClass:[MKPolygon class]]) | |
{ | |
MKPolygonView* aView = [[MKPolygonView alloc]initWithPolygon:(MKPolygon*)overlay]; | |
aView.fillColor = [[UIColor cyanColor] colorWithAlphaComponent:0.2]; | |
aView.strokeColor = [[UIColor blueColor] colorWithAlphaComponent:0.7]; | |
aView.lineWidth = 3; | |
return aView; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name = "MY MODULE" | |
description = "Custom Views specific to a website" | |
package = "MY WEBSITE" | |
core = 7.x | |
dependencies[] = views |
NewerOlder