[Solved] How to show Image over Map not as Pin but as seperate image? [duplicate]

You are looking for Map Overlay MKOverlayView. Check these tutorials: Overlay View Image Overlay Creating overlay Creating a MKOverlayView Create a subclass of MKOverlayView like: .h #import #import @interface MapOverlayView : MKOverlayView { } @end .m #import “MapOverlayView.h” @implementation MapOverlayView – (void)drawMapRect:(MKMapRect)mapRect zoomScale:(MKZoomScale)zoomScale inContext:(CGContextRef)ctx { UIImage *image = [UIImage imageNamed:@”yourImage.png”]; CGImageRef imageReference = image.CGImage; MKMapRect … Read more

[Solved] Location Tracking bouncing the current location and by default drawing the route

CLLocationManager() has distanceFilter and pausesLocationUpdatesAutomatically. You can add a distanceFilter to “ignore” positions and set pausesLocationUpdatesAutomatically to true. If you are using location for navigation don’t hesitate to use kCLLocationAccuracyBestForNavigation 3 solved Location Tracking bouncing the current location and by default drawing the route