0
votes
0answers
38 views

MKMapView not showing correct location on map

I am using MKMapView in UITableView to display user's current location and the event location. It is not displaying correct location in it. Like when address is given sec 35 chandigarh or nehru ...
0
votes
1answer
33 views

Problems with Zooming in on Map on View enter [closed]

I have two map views: mapView and mallMapView. I have the code: - (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation { MKCoordinateRegion region = ...
0
votes
1answer
222 views

iOS 6 MKMapView Memory Leak and Crashes app after some time

iOS 6 MKMapView seems to be using the tons of memory, when we starts zooming and playing around with the Map View in our application(for around 7-10 mins), When we come out of the controller which has ...
4
votes
1answer
146 views

How to select a map pin programmatically

I am new to Maps Concept. Please find the attached image once. when i click the "pin" i am getting message says "Admire your smile" or any text..... Now i want like... when we select the table ...
0
votes
1answer
115 views

Customize Annotation Pin in MKMapKit

I'm trying to customize pins on my map working on -(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id)annotation method in ColonnineController class but it doesn't work, how can ...
0
votes
2answers
105 views

How to draw a line to connect two pins on a map?

I placed two pins on a map: - (void)viewDidLoad { [super viewDidLoad]; CLLocationCoordinate2D cord1 = {.latitude = 44.508473, .longitude = 11.375828}; CLLocationCoordinate2D cord2 = ...
1
vote
1answer
78 views

Fit Annotations on MKMapView part

I got MKMapView and a number of annotations on it. I use next code for displaying all annotations: NSArray *coordinates = [self.mapView valueForKeyPath:@"annotations.coordinate"]; ...
0
votes
1answer
49 views

Get the annotation id or reference in ios mapview

I draw some annotations in viewdidload function and I want to press a button and the annotation which I want callout will automatically show out. The function is [mapView ...
0
votes
4answers
274 views

Shows different Pin images in MKMapview

In my MKMap view I have customized the annotation pin with an image. But still some pins are static and not showing the given image. I am using -(MKAnnotationView *)mapView:(MKMapView *)mapView ...
1
vote
4answers
303 views

Display MKMapViewAnnotations within a map view's visible rect

I'm displaying an MKMapView inside a Path-style parallax table view header. To create the effect, the mapView bounds is larger than the area visible to the user. I need to set the map view region such ...
0
votes
1answer
106 views

Necessary to click to show current location

I created a button to show user's current location, but it's not working correctly. The user's location only appears if I click on it twice. The first time I click, the map shows only a blue screen. ...
0
votes
1answer
50 views

MapView only shows correct location after 2nd load

Im struggling with a mapview on my app. When loading the screen with the mapview on, the map just opens to the default location for mapviews. However, when I return to the previous scren and then ...
0
votes
2answers
160 views

Showing multiple annotation with user location at center

all I need to show multiple annotations within a mapview and zoom to show all this annotations. I have the code fore that MKMapRect zoomRect = MKMapRectNull; int i = 0; for (Post *post in ...
0
votes
1answer
105 views

iOS - Custom graphics for map view

I am making a social networking app, and the user at one point is presented with a map with annotations. However, I would prefer to have custom graphics/tiles/topography for my map view. I would like ...
1
vote
1answer
65 views

How to pass zoomed region from one view to another xcode

I have a mapview on a class where I can go anywhere and can zoom in and can see the whole map. Now I want to know is there is a method to keep track of the zoomed region or map region appearing on the ...
1
vote
1answer
76 views

How to adjust the frame of right accessor to top right in MapView annotation?

I want to add the right accessor image(cross image) to the top right corner as shown in the image below, but i am not able to get the code for it: I am using the following code but its not giving me ...
1
vote
2answers
197 views

Adding User Location Alert on MapView Loading - Xcode

I am working on Map View project but when my app loads up i get this alert on the very first screen '"Project Name Would Like to Use Your Current Location"(Alert Message) "Don't Allow"(button) ...
1
vote
2answers
99 views

How to get number of random points around one point in iphone maps?

I am developing one iphone application which contains maps. Starting screen is navigation screen where user can select location, lets say florida. Now when User selects florida i want to pick up at ...
0
votes
1answer
647 views

iOS: distance of route between two locations

I have a MKMapview with multiple annotations. When the user chooses an annotation, the "callout" view shows the location's name and the distance between the location and the user location. I'm stuck ...
1
vote
2answers
786 views

How to draw a route between my current location to desired location on MKMapView?

I want to show a route between my current location and desired location. I am able to do this but when the source point and destination point so far then it will not show a route and gave the memory ...
6
votes
2answers
277 views

Flickering MapOverlay after zoom out and zoom in-iOS

I have two questions. First of all, once I allocate memory for the coordinates please see the code below, do I have to free memory free(coords)? Second, as you seen below code, I get overlay and add ...
2
votes
0answers
191 views

Tap an MKAnnotationView to de-select it and hide it's callout

I have an iOS app with custom annotations. I want to be able to tap an MKAnnotationView once to show it's callout (works fine) and then I want to tap the MKAnnotationView a second time to de-select ...
-3
votes
1answer
2k views

iOS 6 Maps tutorial?

I can't seem to find a decent tutorial to use a map in my iOS 6 app. I got the part of adding the MapView, but I want to add pins in custom locations. I want my pin to have a title, a subtitle and a ...
0
votes
1answer
301 views

Maps and legal mention

With iOS < 6.0 we were able to re-position the "Google" link over map view (by browsing the subviews of map view). Now with iO6, there's a "legal" link and this is a MKAttributeLabel. A private ...
0
votes
1answer
85 views

UserLocation annotation custom title

i'm trying to set a custom title for the blue dot annotation (the user location annotation), i have tried this piece of code and it works in ViewforAnnotation delegate method: ((MKUserLocation ...
0
votes
1answer
151 views

MKMapView - How to load all default Apple annotations

I am developing a app that is going to use a map. I was wondering how to load all the POIs that already appear on the default Apple's map app? Cheers
0
votes
1answer
105 views

User Location Strange Issue

I have all concept of Maps how it works but I am stuck in very strange issue. As soon as open my Map Controller my default blue is visible (MKUserLocation) but when I am loading custom pins ...
4
votes
1answer
968 views

Custom Annotation view for userlocation not moving the mapview

Can we have custom annotation view for the users current location in iOS? I need to remove the blue dot (with circles) with my own custom view (say some ping pin). Is it possible to do this? If we ...
0
votes
2answers
128 views

Custom Map View

Here is the scenario... I have a image of a map in jpeg format... I want to add it to my iPhone application and mark the coordinates in certain places (just like annotation in map kit ) and also when ...
0
votes
1answer
355 views

MKPointAnnotation: title always visible. Is it possible?

My code for adding a marker and title is this: MKPointAnnotation *annotationPoint = [[MKPointAnnotation alloc] init]; annotationPoint.coordinate = coord; annotationPoint.title = currentTitle; ...
3
votes
1answer
380 views

How make Popover from annotation on MKMapView scroll with map like Apple?

If you touch an annotation on Apple's built in Maps app on the iPad you get a standard callout with a "reveal" callout accessory. When you press the accessory you get a nice Popover view with further ...
0
votes
1answer
277 views

MKAnnotation doesn´t trigger pin point draw method

I´m creating a view with a Map and an annotation using the following class: #import <Foundation/Foundation.h> #import <MapKit/MapKit.h> @interface ContactDetailAnnotation : NSObject ...
0
votes
1answer
277 views

MKMapview showing current location wrong

I am using MKMapView and it is showing my current location. in india it is showing well and exact what in google map but in US current location is showing wrong. i am using - (void) ...
1
vote
1answer
128 views

Can't call “MapAnnotation” When Trying To Code Pin Locations

I can't call the class "MapAnnotation" on XCode 4. I'm working on coding that will allow me to place pins in an MKMapView. I believe I've imported the right delegates. Here's what I've got: ...
0
votes
1answer
1k views

iOS rotating MKAnnotationView in response of MKMapView rotation

In my application I have a MKMapView where several annotations are shown. The map rotates based on the heading of the device. To rotate the map the following statement is performed (called by the ...
0
votes
1answer
815 views

different coloured polygon overlays

is it possible to create different coloured polygons on a map view using the following method? -(MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id )overlay{ say if i had 2 polygons ...
1
vote
1answer
284 views

iOS. How to get an information about current map rect after each action with this map?

For example, I want to display the current x, y, width and height of the map rect, but I don't know what events should I handle. At least I want to catch the double click, zoom and dragging.
2
votes
3answers
362 views

MKMapView won't add any annotations

I have an MKMapView whose delegate is set in Interface Builder and which is a retained property (hooked up in Interface Builder as well) of its view controller. Yes, I am sure they are hooked up ...
0
votes
1answer
2k views

Move MKMapView point to pixel coordinates

I have a quick question. I am using a custom view as a callout accessory for my map view. I am having some issues with getting the annotation to move to the right bottom corner of the said view. I am ...
0
votes
1answer
147 views

XCode: When using MapKit, do I HAVE to have a view based app?

I have created the whole of my app in a single view application and just realised that I need to add a map to it, but alas - all the tutorials I see for creating Map Views, start with "Create a view ...
0
votes
1answer
229 views

Processing annotations from XML feed

Hee all, At this moment i'm working on reading locations from a (valid) XML feed. <locations> <location> <title>Supercoop</title> ...
0
votes
1answer
189 views

Customize map to display on mkmapview

Would anyone know if it is possible to display a different map than the standard one on mapKit (like climates for instance) ? Can we do that with pictures and overlays ? Do you know where I could get ...
2
votes
2answers
864 views

How to accurately make a map for a map-overlay

I have images covering the whole of South Africa. These are in Tiff format and have coordinates embedded into them. I am trying to take these images (about 20 images) and use them as an map overlay in ...
0
votes
1answer
525 views

Masking the Google Map in iOS

In my app I have displayed some custom overlay on google map using MKOverlay with the help of TileMap sample code. My requirement is, I need to mask the entire google map underneath the overlay.That ...
1
vote
2answers
101 views

If X is a subclass of Y objective-c

What is the syntax to say if (object isObjectOfClass Class){ object.color = 1; } I'm making a map application and i want to say "if this point on the map is a branch of THIS store- set the pin ...
0
votes
0answers
309 views

Why would mapView:didAddAnnotationViews: be called several seconds after addAnnotations?

I have a map with a delegate. I have code in the delegate method mapView:didAddAnnotationViews:. When I press a button I do a search, clear the map of annotations, and add 60 simple pin annotations ...
1
vote
2answers
2k views

How to display my own map in MKMapView?

i have a small map of a town, i want to place it into the google map, any idea how to do it ? i am doing so because i need google map to point out user current location.
2
votes
1answer
6k views

How do you center the MKMapView map visually when a user location is known or changes?

I am new to iPhone development and to stackoverflow. Please forgive me if my question is an annoyance. I have read and followed the instructions on How do I zoom an MKMapView to the users current ...
0
votes
1answer
637 views

MKMapView not displaying map

*Note this works perfectly in xcode and is only a problem on a iPhone running IOS 4.2.1 When I set the map to fit a region it does not refresh the map until I touch the screen. The bit of code I use ...
2
votes
1answer
3k views

Displaying custom UIView in callout of pin(annotation) in map, using MapKit

In my application i want to display custom view(with buttons) in the case of user touches annotation on map(standard pin). i know that i can subclass MKAnnotationView and change the view of pin. but ...

1 2