MKOverlay is part of Apple's Map Kit framework for developing iOS applications. The primary purpose of MKOverlay is to add one or more visual overlays to an existing MKMapView (base map). There are different kinds of overlays, like circles (MKCircle), polylines (MKPolyline), polygons (MKPolygon) or ...

learn more… | top users | synonyms

0
votes
0answers
4 views

Getting random diagonal lines in my MKMapView custom overlay

I have a custom overlay (bunch of lines drawn on 1 overlay instead of using MKPolylineView to increase performance) and at certain zoom levels im getting random diagonal lines. I think [map_ ...
0
votes
2answers
28 views

MKPolygon with holes

I searched over the internet but I couldn't find an answer to this. It is possible to draw a hole in a MKPolygon? Something like this: I remember I saw something like this, but I'm not sure if it ...
0
votes
0answers
39 views
+50

Does MKOverlayPathView need drawMapRect?

I'm having some inconsistencies modifying the Breadcrumb example, to have the CrumbPathView subclassed from MKOverlayPathView (like it's supposed to) rather than subclassed from MKOverlayView. ...
0
votes
0answers
27 views

App crashes when i perform too many requests - MKNetworkKit - MKOverlayView - WMSOverMapkit

i'm developing a huge map application that covers different kind of map informations. Some of them are traffic data, graphs, and different maps from the apple ones. All of this data is presented in ...
0
votes
1answer
41 views

MKOverlayView and changing its alpha

I have a custom MKOverlay and MKOverlayView. When the MKOverlayView is created, I can set the alpha of the view: -(void)drawMapRect:(MKMapRect)mapRect zoomScale:(MKZoomScale)zoomScale ...
0
votes
1answer
74 views

How to transform an NSArray of lat/long coordinates w/format: “(”99.9999“,”99.9999“)” into an NSArray of valid CLLocation to use in an MKOverlay?

I'm trying to parse an array of NSStrings with lat/long coordinates("99.999999","99.999999") and then transform it into an array of CLLocations. Is there a NSString method that would help with this? ...
0
votes
0answers
31 views

How to solve MKPolyline unrecognized selector sent to instance

I try to draw a MKPolyline I customized on a MKMapView. The reason of customize a MKPolyline is to hold two properties (DrawMode type (enum), BOOL persisted). CustomLine.h #import ...
2
votes
0answers
46 views

Custom “Callouts” for MKPolyline

I have an app to which I display routes on a map as MKPolyline. I made my search but I was unable to find a sample code on how to display custom MKPolyline callouts as Apple does on the ios6 maps: ...
1
vote
1answer
52 views

Remove a custom MKOverlayView

I'm using a subclassed MKOverlay and subclassed MKOverlayView to display WMS tiles. Got it running well. I'm running into the issue of removing the MKOverlayView when I'm done displaying the tiles. I ...
1
vote
0answers
11 views

removing a part of overlay

I have coordinates to draw as overlay on the map. MKPolyline *line = [MKPolyline polylineWithCoordinates:coordinatesPointer count:coordinatesCount]; Map just draw overlay. When user thinks they ...
0
votes
0answers
25 views

add circular overlay to mapview

I am trying to add a circular overlay in ios mapview,in view did load i added following code CLLocationCoordinate2D center = CLLocationCoordinate2DMake( 53.809638, -1.554586 ); MKCircle *circle = ...
0
votes
1answer
43 views

Using NSCoder to save custom MKOverlay

I have a custom NSObject class Trails that I want to save to a plist. I have it correctly saving and loading now, with the exception of one part. I have a custom MKOverlay class object Crumbs in that ...
0
votes
0answers
85 views

UIImage not displaying properly in MKOverlay

I am trying to display a radar image in an MKOverlay with MKOverlayView using just a center coordinate and a radius. The image is being loaded from a url using the center coordinate and radius in the ...
0
votes
1answer
60 views

why Apple do this : MKMapRectIntersection(boundingMapRect, worldRect)?

I'm just overriding a MKOverlay so I'm looking for good practice in Apple developers sample code ... When I see this : // bite off up to 1/4 of the world to draw into. MKMapPoint origin = ...
0
votes
1answer
25 views

Filtering Mkoverlay array

I am trying to filter out arrays of MKOverlays using predicate but I am getting exception. NSArray *pointsArray = [viewController.mapView overlays]; MKPolyline *myLine = (MKPolyline ...
0
votes
2answers
54 views

Detect touches on MKOverlay

How can i detect touch events on MKOverlay or MKPolyline view? I have tried this and adding tapgesture on MKPolylineView but got no success. - (MKOverlayView *)mapView:(MKMapView *)mapView ...
0
votes
0answers
31 views

Change MKOverlay on an ipad with retina display

I'm having a problem with MKOverlay. I need to change MKOverlay when the user clicks on a button. This works fine on iPad 2 (without retina display), but with ipad 3 or 4 (with retina display) the ...
1
vote
1answer
80 views

Where's MKMapPointForCoordinate in MonoTouch

Am implementing a class that extend MKOverlay, I can't find the MKMapPointForCoordinate function to do: public override MKMapRect BoundingMapRect() { MKMapPoint upperLeft = ...
1
vote
1answer
83 views

How to store MKOverlay object to file for retrieving later

I am writing an iOS application to record your travel path and then storing it so that it can be retrieved later. Most of the code for drawing the path is based on the sample code Breadcrumb. Now I ...
0
votes
0answers
68 views

MKMapView redrawing multiple times when MKOverlays are added and removed on iOS6

We have an app that adds and removes map polygon overlays as the user pans and zooms the map. We correctly make the calls to add and remove them on the main thread. We are doing this with the new iOS6 ...
0
votes
2answers
89 views

performSelector:withObject: not working properly

I have this method that is not working the way I need. It create a MKPolyline "animated": let's say I have 85 points. Each polyline that connects these points is created 0.1 second after the previous. ...
5
votes
2answers
170 views

MKOverlay overlays everything with weird circumstances only on ios5?

I have a MKMapView that is having a very strange problem which is kind of hard to explain. I have an MKOverlay that is saved between sessions by saving the points of the overlay to a file and loading ...
0
votes
0answers
89 views

iOS: Add a Gradient Layer to MKPolylineView?

How do I add a Gradient to MKPolylineView? Initially I tried doing MKPolylineView *lineView = [[MKPolylineView alloc] initWithPolyline:overlay]; CAGradientLayer *gradient = [CAGradientLayer layer]; ...
1
vote
1answer
143 views

Create multiple MKOverlays of polyline from locations coming via web-service

My app is real-time tracker, where multiple users are logged in and updating their location by sending their co-ordinates to our web service which is then called back let's after every 2 minutes to ...
3
votes
2answers
153 views

Custom map path line

I'm having trouble with drawing a line on the map with a stroke. (inside color and outside color) I beleive i'm on the right path and have subclassed mkOverlayView to override the drawing (needs to ...
1
vote
1answer
95 views

Hide/show MKPolyline with a particular title?

How would I hide/show polyline (MKPolyline) with a particular title? I am able to remove them with this code: -(IBAction)hideOverlay:(id)sender { for (id<MKOverlay> overlayToRemove in ...
1
vote
1answer
118 views

multithreading in iOS, MapKit displaying data

My app is MapKit based, where multiple users can be tracked. Now using our web services, I am displaying my location on the map plus other users' last, let's say 10 locations. If a user updates their ...
3
votes
2answers
361 views

How to draw a MKCircle whose fill color is not solid but an image

I found out how to draw a cricle around map annotation. I do it like this: MKCircle *circle = [MKCircle circleWithCenterCoordinate:theCoordinate radius:15000]; [myMap addOverlay:circle]; ...
0
votes
1answer
109 views

Is CGPoint in MKPolygonView?

I'm trying to figure out a way to detect which MKOverlayView (actually MKPolygonView) was tapped and then change its color. I got it running with this code: - (void)mapTapped:(UITapGestureRecognizer ...
0
votes
0answers
46 views

Calculating tiles to display in a MapRect for displaying total world map in the iPad

I am working on an app that uses MKOverlay views to layer my own custom maps on top of the Google base map. But it display the map as follows : But I have to display map as shown below : And My ...
1
vote
0answers
165 views

Custom MKOverlayView Drawing

I am trying to create a custom MKOverlayView class that draws the overlay since the normal MKOverlay and MKOverlayView does not suit my needs for the application I am building. I am having a problem ...
1
vote
0answers
68 views

MKOverlayPathView Trouble enabling user to define pathWidth

Ok so I'm using Apples IOS Breadcrumb [Sample Code][1] . I've a slider to the BreadcrumbViewController.xib called "lineWidth" and have a UIlabel which shows the value of the slider being changed ...
0
votes
1answer
237 views

MKMapView overlays everything except view when loaded? Only iOS5<

For some reason my MKMapView gets an overlay sometimes that covers everything except the view when loaded. You can scroll off to the side after the view loads and view the overlay. Additionally, this ...
1
vote
0answers
57 views

Intercepting touches on MKOverlay border

One of the functions of program is to select a piece of the map. I do this using MKAnnotations and using a MKPolygonView (with just the border visible) to connect the "dots". (Please take a look at ...
1
vote
0answers
36 views

frame for the MKPolygonView is [[0,0][0,0]], or a dot, when adding a kml overlay to a MKMapView

I am creating an iOS application for an iPhone, and am trying to add overlays on top of my map view. I am using Google Earth to create the paths that I want to use, and followed apples KMLViewer ...
0
votes
2answers
224 views

MKMapView image overlay drawing inverted

I am currently creating an app which requires numerous overlays of different sizes to be drawn on a map. The app currently grabs 2 map points which represent the corners of a bounding box in which the ...
2
votes
1answer
310 views

MKPolygon ontouch detailview

I've created a MKMapView with MKPolygons based on coordinates. There are multiple polygons on the map (look here for an example of what I am re-creating as an app). What I am trying to do is when ...
0
votes
2answers
337 views

How to display a walking track or route as a Map Overlay in iOS 6

I've been trying to search the internet for a tutorial with some sample code that shows how to display a track or route as an overlay on a map. I've found some tutorials but they are for displaying ...
1
vote
1answer
176 views

Why a MKPolyline doesn't show on the MKMapView?

I'm pretty new on programmin to develop iphone applications and i would like to know why the MKPolyline that I create with 2 MKMapPoints doesn't appears in the MKMapView that I insert on my view. Here ...
1
vote
0answers
64 views

Receiving touch events on MKCircleView

I am trying to write an app where the user can click on an MKCircleView overlay on a map with several overlays (all of the same kind). Depending on which overlay the user clicks a specific message ...
7
votes
1answer
181 views

Moving MKOverlayPathView disappears behind tiles

I'm developing an app where I want to show fictional planes flying from and to airports. This may not be the only things that I want to represent flying through the map. For this I used the sample ...
1
vote
1answer
198 views

Error [IRForTarget]: Couldn't find Objective-C indirect ivar symbol while adding overlays to MKMapView

I got this error when I'm trying to add overlays to map, from one of SO answers How to prevent from "_OBJC_IVAR_$_UIPickerView._backgroundView symbol not found" error? I understood that we ...
5
votes
0answers
105 views

Adding multiple Overlays on map view takes more time

I'm trying to add multiple overlays of about 1500 on map view. I'm getting the locations from database and adding them on map view. The time to get data from database is very low but the time it takes ...
1
vote
0answers
81 views

Animating MKPolygonView

As the title implies I'm trying to animate a MKPolygonView, specifically the color and the opacity. Right now I have a gesture detect whether the user has touched the polygon, by iterating through ...
0
votes
1answer
205 views

Overlaying multiple polygons on the mapView-iOS

As you seen in the image, there are numbers of polygon on the top of the mapView. Each polygon overlays on the top of other polygon. This causes opacity problem and that misleads user to interpret ...
0
votes
1answer
115 views

Add and display MKOverlay when MKAnnotation has been tapped

Is possible to add an MKOverlay when the user taps an MKAnnotation? I.e., what I want to achieve is when the user taps the annotation pin, I want to draw a polygon (a circle for example), and when the ...
0
votes
1answer
101 views

Change Overlay Alpha based on MapType selection

I would like to know if its possible to change the map overlay alpha based on selecting the maptype here is my code I thought might work but it doesn't seem to. Can anyone provide some incite? - ...
2
votes
0answers
110 views

Adding/removing MKCircle is choppy/slow, trying to simulate resizing

So the radius property of MKCircle is read-only, necessitating that any resizing be done via removal of the original MKCircle from the map view, and adding the new one. To make things smoother, I ...
9
votes
2answers
329 views

Weather app with refreshing overlays

I am planning to duplicate the application below just to learn about making geographical apps. How could this high resolution image be generated quickly and without a flicker during the updating? I ...
4
votes
1answer
485 views

Performance issues with MapKit on iOS6

After updating to iOS 6 I have noticed sever performance decreases when panning or zooming a MKMapView with multiple overlays. An app I created has approximately 600 polygon overlays of various ...

1 2 3 4