mkmapview

how to implement MKMapView Search;

Is there an example code? ...

Mapkit - Zoom level keeps resetting

Hello, I have the following code in place: -(void)viewDidLoad { //Set Zoom level using Span MKCoordinateSpan span; span.latitudeDelta = 0.05; span.longitudeDelta = 0.05; region.span = span; } -(void)locationChange:(CLLocation *)newLocation: (CLLocation *)oldLocation { // This zooms in on the users current loa...

Left Call Out View is not working in 3.0, 3.1, 3.1.3.... but it is working in 4.0....

Hi Guys, I have got some problems in MapKit, that is leftCalloutAccessoryView is not working in 3.0, 3.1, 3.1.3 but it is working in 4.0 Can please suggest any solution for this. Thanks, Madan Mohan. ...

mkmapkit iphone custom annotation detail

Good Day! i need to add custom layout on the click of the annotation pin which already has title and subtitle, but i need to add more detail into it. i need it to be multiline. can some body tell me. i am talking about mapkit in iphone. and mkannotation views. Thanks ...

Set MKMapView region to center on two annotations

I'm looking for some help with finishing some code on setting the region on a MKMapView based on the current location annotation and an annotation I have set. I want to calculate the distance between the two and set the center between the two and then zoom out so both are in view. It appears to work fine in Simulator for me, but unfortu...

Pins coming on the CallOut view

Hi all, I am implementing a map based application, In that I found a bug that is, some times the pins or rendering upon the call out view. Is it possible to resolve this? Thanks in advance, S. ...

How to send the pins in the map view back to the call out view?

Hi all, I am implementing MAPKit Based application, In that I had a problem with the pins display. Some times they are coming on top of the callOut view. I used the following code to send the pins back, - (void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray *)views { for (MKAnnotationView* annotationView in view...

MKMapView annotation position update problem

I need to track user current location with realtime refreshrate I have one function with two solutions for that. (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation { ifdef Variant_1 if(m_currentLocation) [m_Map removeAnnotation:m_currentLocation...