¡@

Home 

2014/10/15 ¤U¤È 10:11:18

iphone Programming Glossary: mapkit

Forward geocoding from the iPhone

http://stackoverflow.com/questions/1140404/forward-geocoding-from-the-iphone

geocoding from the iPhone Given that the mapkit doesn't provide forward geocoding functionality today can anyone provide help on how I can i use a search..

MKMapView Zoom and Region

http://stackoverflow.com/questions/1166444/mkmapview-zoom-and-region

is there any way to specify a minimum maximum zoom level on a MKMapView Thanks iphone cocoa touch mapkit zoom share improve this question First of all MKMapView does not use have a predefined set of zoom..

MKPinAnnotationView: Are there more than three colors available?

http://stackoverflow.com/questions/1185611/mkpinannotationview-are-there-more-than-three-colors-available

Is there any way to get other colors also I've found nothing in the docs. iphone cocoa touch mapkit mkpinannotationview share improve this question You might find the following images useful and..

How to customize the callout bubble for MKAnnotationView?

http://stackoverflow.com/questions/1565828/how-to-customize-the-callout-bubble-for-mkannotationview

to customize the callout bubble for MKAnnotationView I'm currently working with the mapkit and am stuck. I have a custom annotation view I am using and I want to use the image property to display.. subtitle when the annotation icon is touched . I want to be able to control the callout itself the mapkit only provides access to the left and right ancillary callout views but no way to provide a custom view.. before drawing I'm at a loss. Any suggestions Am I missing something obvious iphone ios mkmapview mapkit mkannotationview share improve this question There is an even easier solution. Create a custom UIView..

Drawing a route in mapkit in iphone sdk

http://stackoverflow.com/questions/2834523/drawing-a-route-in-mapkit-in-iphone-sdk

a route in mapkit in iphone sdk I want to draw a route between 2 locations on the map. Something as a tour guide. When.. mind me asking this question. EDIT Does iOS 6 provide any direct way for this problem iphone mapkit share improve this question Tricky one. There is no way to do that with mapkit its easy enough to.. problem iphone mapkit share improve this question Tricky one. There is no way to do that with mapkit its easy enough to draw lines when you know the coordinates but mapkit won't give you access to the..

MKAnnotationView - Lock custom annotation view to pin on location updates

http://stackoverflow.com/questions/6392931/mkannotationview-lock-custom-annotation-view-to-pin-on-location-updates

animated true self.mapView regionThatFits region UIView commitAnimations iphone objective c mapkit mkmapview mkannotationview share improve this question I created a project based on your CalloutMapAnnotationView..

How to intercept touches events on a MKMapView or UIWebView objects?

http://stackoverflow.com/questions/1049889/how-to-intercept-touches-events-on-a-mkmapview-or-uiwebview-objects

a MKMapView object. I subclassed it by creating the following class #import UIKit UIKit.h #import MapKit MapKit.h @interface MapViewWithTouches MKMapView void touchesBegan NSSet touches withEvent UIEvent event.. object. I subclassed it by creating the following class #import UIKit UIKit.h #import MapKit MapKit.h @interface MapViewWithTouches MKMapView void touchesBegan NSSet touches withEvent UIEvent event @end..

MKMapView Zoom and Region

http://stackoverflow.com/questions/1166444/mkmapview-zoom-and-region

Zoom and Region I'm familiar with using Google Maps Javascript API. Recently I started using MapKit framework for an iphone project but I'm having a hard time to figure out zooming and setting a region.. 8 9 10 along with straightforward function setZoom . The only equivalent method I can see in the MapKit framework is setRegion animated. As I understand I need to set a region's span's latitude and longitude..

How can I launch the Google Maps iPhone application from within my own native application?

http://stackoverflow.com/questions/30058/how-can-i-launch-the-google-maps-iphone-application-from-within-my-own-native-ap

Customize the MKAnnotationView callout

http://stackoverflow.com/questions/8018841/customize-the-mkannotationview-callout

the title photo url etc. Use this class to initialize a MKAnnotation Annotation object. #import MapKit MapKit.h @interface Content NSObject @property nonatomic assign CLLocationCoordinate2D coordinate ..... title photo url etc. Use this class to initialize a MKAnnotation Annotation object. #import MapKit MapKit.h @interface Content NSObject @property nonatomic assign CLLocationCoordinate2D coordinate ... @interface..

How do you optionally use iPhone OS 3.0 features in a 2.0 compatible app?

http://stackoverflow.com/questions/986589/how-do-you-optionally-use-iphone-os-3-0-features-in-a-2-0-compatible-app

there are customers who do not want to update yet. I experimented a bit with weak linking of the MapKit.framework weak_framework MapKit . I found it quite cumbersome since I had to trick the compiler linker.. want to update yet. I experimented a bit with weak linking of the MapKit.framework weak_framework MapKit . I found it quite cumbersome since I had to trick the compiler linker to use the 2.0 SDK with all code.. I had to trick the compiler linker to use the 2.0 SDK with all code except the one which uses MapKit. Has anybody more experience with this What are you doing to make it compile link. Has anybody already..

Forward geocoding from the iPhone

http://stackoverflow.com/questions/1140404/forward-geocoding-from-the-iphone

geocoding from the iPhone Given that the mapkit doesn't provide forward geocoding functionality today can anyone provide help on how I can i use a search bar to return a latitude and longitude coordinate from..

MKMapView Zoom and Region

http://stackoverflow.com/questions/1166444/mkmapview-zoom-and-region

zoom level like 9 to these delta values As a bonus question is there any way to specify a minimum maximum zoom level on a MKMapView Thanks iphone cocoa touch mapkit zoom share improve this question First of all MKMapView does not use have a predefined set of zoom levels like Google Maps does. Instead the visible area of..

MKPinAnnotationView: Are there more than three colors available?

http://stackoverflow.com/questions/1185611/mkpinannotationview-are-there-more-than-three-colors-available

pin color is available in red green and purple. Is there any way to get other colors also I've found nothing in the docs. iphone cocoa touch mapkit mkpinannotationview share improve this question You might find the following images useful and the code to use them in viewForAnnotation MKAnnotationView mapView..

How to customize the callout bubble for MKAnnotationView?

http://stackoverflow.com/questions/1565828/how-to-customize-the-callout-bubble-for-mkannotationview

to customize the callout bubble for MKAnnotationView I'm currently working with the mapkit and am stuck. I have a custom annotation view I am using and I want to use the image property to display the point on the map with my own icon. I have this working.. callout view the bubble that shows up with the title subtitle when the annotation icon is touched . I want to be able to control the callout itself the mapkit only provides access to the left and right ancillary callout views but no way to provide a custom view for the callout bubble or to give it zero size or anything.. a way to dig into the map view to remove the callout bubble before drawing I'm at a loss. Any suggestions Am I missing something obvious iphone ios mkmapview mapkit mkannotationview share improve this question There is an even easier solution. Create a custom UIView for your callout . Then create a subclass of MKAnnotationView..

Drawing a route in mapkit in iphone sdk

http://stackoverflow.com/questions/2834523/drawing-a-route-in-mapkit-in-iphone-sdk

a route in mapkit in iphone sdk I want to draw a route between 2 locations on the map. Something as a tour guide. When the tourist clicks another location I want to be able to draw.. for intermediate coordinates As I am a newbie please don't mind me asking this question. EDIT Does iOS 6 provide any direct way for this problem iphone mapkit share improve this question Tricky one. There is no way to do that with mapkit its easy enough to draw lines when you know the coordinates but mapkit won't.. question. EDIT Does iOS 6 provide any direct way for this problem iphone mapkit share improve this question Tricky one. There is no way to do that with mapkit its easy enough to draw lines when you know the coordinates but mapkit won't give you access to the roads or other routing information. I'd say you need to call..

MKAnnotationView - Lock custom annotation view to pin on location updates

http://stackoverflow.com/questions/6392931/mkannotationview-lock-custom-annotation-view-to-pin-on-location-updates

coords self.mapView setRegion region animated true self.mapView regionThatFits region UIView commitAnimations iphone objective c mapkit mkmapview mkannotationview share improve this question I created a project based on your CalloutMapAnnotationView demonstrating a IB based solution. Arrow keys..

How to intercept touches events on a MKMapView or UIWebView objects?

http://stackoverflow.com/questions/1049889/how-to-intercept-touches-events-on-a-mkmapview-or-uiwebview-objects

not sure what i'm doing wrong but I try to catch touches on a MKMapView object. I subclassed it by creating the following class #import UIKit UIKit.h #import MapKit MapKit.h @interface MapViewWithTouches MKMapView void touchesBegan NSSet touches withEvent UIEvent event @end And the implementation #import MapViewWithTouches.h.. what i'm doing wrong but I try to catch touches on a MKMapView object. I subclassed it by creating the following class #import UIKit UIKit.h #import MapKit MapKit.h @interface MapViewWithTouches MKMapView void touchesBegan NSSet touches withEvent UIEvent event @end And the implementation #import MapViewWithTouches.h @implementation..

MKMapView Zoom and Region

http://stackoverflow.com/questions/1166444/mkmapview-zoom-and-region

Zoom and Region I'm familiar with using Google Maps Javascript API. Recently I started using MapKit framework for an iphone project but I'm having a hard time to figure out zooming and setting a region on map. In Google Maps API I used to use integer zoom levels.. In Google Maps API I used to use integer zoom levels like 8 9 10 along with straightforward function setZoom . The only equivalent method I can see in the MapKit framework is setRegion animated. As I understand I need to set a region's span's latitude and longitude delta values to specify zoom level. But I really don't have..

How can I launch the Google Maps iPhone application from within my own native application?

http://stackoverflow.com/questions/30058/how-can-i-launch-the-google-maps-iphone-application-from-within-my-own-native-ap

Customize the MKAnnotationView callout

http://stackoverflow.com/questions/8018841/customize-the-mkannotationview-callout

more and set them here and a dictionary of random values with the title photo url etc. Use this class to initialize a MKAnnotation Annotation object. #import MapKit MapKit.h @interface Content NSObject @property nonatomic assign CLLocationCoordinate2D coordinate ... @interface Annotation NSObject MKAnnotation AnnotationProtocol.. set them here and a dictionary of random values with the title photo url etc. Use this class to initialize a MKAnnotation Annotation object. #import MapKit MapKit.h @interface Content NSObject @property nonatomic assign CLLocationCoordinate2D coordinate ... @interface Annotation NSObject MKAnnotation AnnotationProtocol id..

How do you optionally use iPhone OS 3.0 features in a 2.0 compatible app?

http://stackoverflow.com/questions/986589/how-do-you-optionally-use-iphone-os-3-0-features-in-a-2-0-compatible-app

on a 3.0 device. I don't want to go 3.0 all the way because there are customers who do not want to update yet. I experimented a bit with weak linking of the MapKit.framework weak_framework MapKit . I found it quite cumbersome since I had to trick the compiler linker to use the 2.0 SDK with all code except the one which uses.. to go 3.0 all the way because there are customers who do not want to update yet. I experimented a bit with weak linking of the MapKit.framework weak_framework MapKit . I found it quite cumbersome since I had to trick the compiler linker to use the 2.0 SDK with all code except the one which uses MapKit. Has anybody more experience.. weak_framework MapKit . I found it quite cumbersome since I had to trick the compiler linker to use the 2.0 SDK with all code except the one which uses MapKit. Has anybody more experience with this What are you doing to make it compile link. Has anybody already submitted an app to Apple which weak links frameworks from..

How to intercept touches events on a MKMapView or UIWebView objects?

http://stackoverflow.com/questions/1049889/how-to-intercept-touches-events-on-a-mkmapview-or-uiwebview-objects

to catch touches on a MKMapView object. I subclassed it by creating the following class #import UIKit UIKit.h #import MapKit MapKit.h @interface MapViewWithTouches MKMapView void touchesBegan NSSet touches withEvent UIEvent event @end And the implementation.. touches on a MKMapView object. I subclassed it by creating the following class #import UIKit UIKit.h #import MapKit MapKit.h @interface MapViewWithTouches MKMapView void touchesBegan NSSet touches withEvent UIEvent event @end And the implementation..

iPhone: How to draw line between two points on MapKit?

http://stackoverflow.com/questions/10598322/iphone-how-to-draw-line-between-two-points-on-mapkit

How to draw line between two points on MapKit I have Latitude and Longitude of two points and Want to Draw line between these two points with Pin on MapKit. I have googled.. on MapKit I have Latitude and Longitude of two points and Want to Draw line between these two points with Pin on MapKit. I have googled but Could not find some suitable solution because the one I found was drawing overlay with array of Data..

Should I be worried about rumors that Apple will stop using Google Maps in iOS6? [closed]

http://stackoverflow.com/questions/10964585/should-i-be-worried-about-rumors-that-apple-will-stop-using-google-maps-in-ios6

information based on information it obtains from a third party transit agency's API. It heavily depends on the iOS MapKit framework and iOS location services to display current geolocation of buses on a given route in realtime and to provide.. on a given route in realtime and to provide transit information between two locations. According to Apple the iOS MapKit framework uses Google services to provide map data. Some features invoke the Google Maps app to provide transit planning.. true do you think Apple will most certainly implement any changes without affecting apps that already use the current MapKit framework What kinds of potential problems should I be prepared for iphone ios ios5 mapkit ios6 maps share improve this..

MKMapView Zoom and Region

http://stackoverflow.com/questions/1166444/mkmapview-zoom-and-region

Zoom and Region I'm familiar with using Google Maps Javascript API. Recently I started using MapKit framework for an iphone project but I'm having a hard time to figure out zooming and setting a region on map. In Google.. zoom levels like 8 9 10 along with straightforward function setZoom . The only equivalent method I can see in the MapKit framework is setRegion animated. As I understand I need to set a region's span's latitude and longitude delta values to..

Finding Path/Route Between two points on MapKit in iPhone

http://stackoverflow.com/questions/12002179/finding-path-route-between-two-points-on-mapkit-in-iphone

Path Route Between two points on MapKit in iPhone I am trying to find the path between two locations on Mapkit. All I have is two locations. Now I have to find.. is two locations. Now I have to find the exact path between these points and draw a line between these points using MapKit. I have gone through several examples in which they are using .csv files. In that .csv file they have stored the latitude.. CGRectMake 0.0 49.0 320.0 411.0 self.view addSubview _mapRecord MapDirection.h #import UIKit UIKit.h #import MapKit MapKit.h #import RegexKitLite.h @interface MapDirection UIView MKMapViewDelegate MKMapView mapView NSArray routes BOOL isUpdatingRoutes..

Z-ordering of MKAnnotationViews

http://stackoverflow.com/questions/1681565/z-ordering-of-mkannotationviews

ordering of MKAnnotationViews I'm getting fairly frustrated with the limitations of MKMapKit. My current problem has to do with the z ordering of annotation views particularly as it relates to touches. If you accept.. seem to fix #1. The problem is that now the callout views are no longer always on top to the annotation views. The MapKit seems to get very confused about the layers callouts should be drawn in a layer above all annotation views . I can even..

Why am I crashing after MKMapView is freed if I'm no longer using it?

http://stackoverflow.com/questions/2188098/why-am-i-crashing-after-mkmapview-is-freed-if-im-no-longer-using-it

mkmapview share improve this question This is because of the way MKMapView works. There's an operation pending so MapKit is retaining the MKMapView and it hasn't actually been deallocated yet. That isn't itself a problem. The problem is that..

How can I launch the Google Maps iPhone application from within my own native application?

http://stackoverflow.com/questions/30058/how-can-i-launch-the-google-maps-iphone-application-from-within-my-own-native-ap

Customizing the MKAnnotation Callout bubble

http://stackoverflow.com/questions/4094325/customizing-the-mkannotation-callout-bubble

YES return annotationView For more informations look at this http developer.apple.com library ios #documentation MapKit Reference MKAnnotationView_Class Reference Reference.html 23 apple_ref occ cl MKAnnotationView share improve this answer..

How do I create an image overlay and add to MKMapView?

http://stackoverflow.com/questions/5283741/how-do-i-create-an-image-overlay-and-add-to-mkmapview

do I create an image overlay and add to MKMapView I am trying to learn MapKit and am now trying to add an image as an overlay to the map view. I can't seem to find any sample code to help explain how.. sample code to help explain how to do this. Can you guys please help me how to create MKOverlay s and add them to MKMapKit . Thanks in advance.. iphone cocoa touch mkmapview share improve this question UPDATE I've created a post on this blog..

Customize the MKAnnotationView callout

http://stackoverflow.com/questions/8018841/customize-the-mkannotationview-callout

of random values with the title photo url etc. Use this class to initialize a MKAnnotation Annotation object. #import MapKit MapKit.h @interface Content NSObject @property nonatomic assign CLLocationCoordinate2D coordinate ... @interface Annotation.. values with the title photo url etc. Use this class to initialize a MKAnnotation Annotation object. #import MapKit MapKit.h @interface Content NSObject @property nonatomic assign CLLocationCoordinate2D coordinate ... @interface Annotation NSObject..

How to keep data associated with MKAnnotation from being lost after a callout pops up and user taps disclosure button?

http://stackoverflow.com/questions/9797047/how-to-keep-data-associated-with-mkannotation-from-being-lost-after-a-callout-po

the detail view controller. I have a simple MKAnnotation class that looks like #import Foundation Foundation.h #import MapKit MapKit.h @interface VoiceMemoryAnnotation NSObject MKAnnotation NSString blobkey @property nonatomic retain NSString blobkey.. view controller. I have a simple MKAnnotation class that looks like #import Foundation Foundation.h #import MapKit MapKit.h @interface VoiceMemoryAnnotation NSObject MKAnnotation NSString blobkey @property nonatomic retain NSString blobkey id..

How do you optionally use iPhone OS 3.0 features in a 2.0 compatible app?

http://stackoverflow.com/questions/986589/how-do-you-optionally-use-iphone-os-3-0-features-in-a-2-0-compatible-app

all the way because there are customers who do not want to update yet. I experimented a bit with weak linking of the MapKit.framework weak_framework MapKit . I found it quite cumbersome since I had to trick the compiler linker to use the 2.0 SDK.. customers who do not want to update yet. I experimented a bit with weak linking of the MapKit.framework weak_framework MapKit . I found it quite cumbersome since I had to trick the compiler linker to use the 2.0 SDK with all code except the one which.. quite cumbersome since I had to trick the compiler linker to use the 2.0 SDK with all code except the one which uses MapKit. Has anybody more experience with this What are you doing to make it compile link. Has anybody already submitted an app..

iPhone: How to draw line between two points on MapKit?

http://stackoverflow.com/questions/10598322/iphone-how-to-draw-line-between-two-points-on-mapkit

two points. Just two points and want to draw line between these two points. Please help. iphone objective c ios ipad mapkit share improve this question Please See this tutorial to draw polyline or route in mkmapview 1 Draw route using mapkit.. share improve this question Please See this tutorial to draw polyline or route in mkmapview 1 Draw route using mapkit 2 From versions above ios4.0 You can use MKOverlayPathView See Apple Docs Sample code create PolyLine void loadRoute NSString..

Forward geocoding from the iPhone

http://stackoverflow.com/questions/1140404/forward-geocoding-from-the-iphone

geocoding from the iPhone Given that the mapkit doesn't provide forward geocoding functionality today can anyone provide help on how I can i use a search bar to return..

MKMapView Zoom and Region

http://stackoverflow.com/questions/1166444/mkmapview-zoom-and-region

As a bonus question is there any way to specify a minimum maximum zoom level on a MKMapView Thanks iphone cocoa touch mapkit zoom share improve this question First of all MKMapView does not use have a predefined set of zoom levels like Google..

MKPinAnnotationView: Are there more than three colors available?

http://stackoverflow.com/questions/1185611/mkpinannotationview-are-there-more-than-three-colors-available

in red green and purple. Is there any way to get other colors also I've found nothing in the docs. iphone cocoa touch mapkit mkpinannotationview share improve this question You might find the following images useful and the code to use them..

How to customize the callout bubble for MKAnnotationView?

http://stackoverflow.com/questions/1565828/how-to-customize-the-callout-bubble-for-mkannotationview

to customize the callout bubble for MKAnnotationView I'm currently working with the mapkit and am stuck. I have a custom annotation view I am using and I want to use the image property to display the point on the.. up with the title subtitle when the annotation icon is touched . I want to be able to control the callout itself the mapkit only provides access to the left and right ancillary callout views but no way to provide a custom view for the callout bubble.. the callout bubble before drawing I'm at a loss. Any suggestions Am I missing something obvious iphone ios mkmapview mapkit mkannotationview share improve this question There is an even easier solution. Create a custom UIView for your callout..

Getting the bounds of an MKMapvIew

http://stackoverflow.com/questions/2081753/getting-the-bounds-of-an-mkmapview

MKMapview. It seems though that the annotationVisibleRect is based on the parent view coordinates. iphone cocoa touch mapkit mkmapview bounds share improve this question Okay I officially answered my own question but since I didn't find it anywhere..

Why am I crashing after MKMapView is freed if I'm no longer using it?

http://stackoverflow.com/questions/2188098/why-am-i-crashing-after-mkmapview-is-freed-if-im-no-longer-using-it

subclass being freed. I've checked and my memory management is correct. What's going on iphone memory management mapkit mkmapview share improve this question This is because of the way MKMapView works. There's an operation pending so MapKit..

Custom MKPinAnnotation callout bubble similar to default callout bubble

http://stackoverflow.com/questions/2537259/custom-mkpinannotation-callout-bubble-similar-to-default-callout-bubble

add required details in Default bubble. Thats why am creating custom bubble. Plz help me..thanks.. iphone objective c mapkit mkmapview mkpinannotationview share improve this question I have developed a custom callout bubble that is nearly identical..

Drawing a route in mapkit in iphone sdk

http://stackoverflow.com/questions/2834523/drawing-a-route-in-mapkit-in-iphone-sdk

a route in mapkit in iphone sdk I want to draw a route between 2 locations on the map. Something as a tour guide. When the tourist clicks.. am a newbie please don't mind me asking this question. EDIT Does iOS 6 provide any direct way for this problem iphone mapkit share improve this question Tricky one. There is no way to do that with mapkit its easy enough to draw lines when you.. direct way for this problem iphone mapkit share improve this question Tricky one. There is no way to do that with mapkit its easy enough to draw lines when you know the coordinates but mapkit won't give you access to the roads or other routing..

CLLocation Category for Calculating Bearing w/ Haversine function

http://stackoverflow.com/questions/3925942/cllocation-category-for-calculating-bearing-w-haversine-function

sin lat2 sin lat1 cos lat2 cos dLon double radiansBearing atan2 y x return RadiansToDegrees radiansBearing iphone mapkit core location cllocation haversine share improve this question Your code seems fine to me. Nothing wrong with the calculous...

MKAnnotationView - Lock custom annotation view to pin on location updates

http://stackoverflow.com/questions/6392931/mkannotationview-lock-custom-annotation-view-to-pin-on-location-updates

setRegion region animated true self.mapView regionThatFits region UIView commitAnimations iphone objective c mapkit mkmapview mkannotationview share improve this question I created a project based on your CalloutMapAnnotationView demonstrating..

Calculate new coordinate x meters and y degree away from one coordinate

http://stackoverflow.com/questions/6633850/calculate-new-coordinate-x-meters-and-y-degree-away-from-one-coordinate

translateMeters int meters translateDegrees double degrees Thanks iphone objective c geolocation location mapkit share improve this question Unfortunately there's no such function provided in the api so you'll have to write your..

How to keep data associated with MKAnnotation from being lost after a callout pops up and user taps disclosure button?

http://stackoverflow.com/questions/9797047/how-to-keep-data-associated-with-mkannotation-from-being-lost-after-a-callout-po

which pin was selected. Is there some way I can pass in the selected annotation to the showPinDetails method iphone mapkit mkannotation share improve this question In the showPinDetails method you can get the currently selected annotation..

Google Maps in iOS6 [closed]

http://stackoverflow.com/questions/11448858/google-maps-in-ios6

this this Can google be kind enough tolerate old apps can still be used in this context Is google preparing their own Mapkit API we could use on iPhone could it be available on previous IOS releases so developers could update their apps before IOS6.. be used in this context They could and I believe in practice they probably will be. Is google preparing their own Mapkit API we could use on iPhone could it be available on previous IOS releases so developers could update their apps before IOS6..

Finding Path/Route Between two points on MapKit in iPhone

http://stackoverflow.com/questions/12002179/finding-path-route-between-two-points-on-mapkit-in-iphone

Path Route Between two points on MapKit in iPhone I am trying to find the path between two locations on Mapkit. All I have is two locations. Now I have to find the exact path between these points and draw a line between these points..

How to display an image on a MKOverlayView?

http://stackoverflow.com/questions/3891850/how-to-display-an-image-on-a-mkoverlayview

be converted every fifteen minutes. So the conversion has to be done on the fly. I also want the tiling to be done by Mapkit and not by myself using gdal2tiles or the GDAL framework. UPDATE END I'm currently working on a project which displays a..

Check user location age in Mapkit - GPS accuracy for MapKit User Location significantly better than from CLLocationManager?

http://stackoverflow.com/questions/3945742/check-user-location-age-in-mapkit-gps-accuracy-for-mapkit-user-location-signif

user location age in Mapkit GPS accuracy for MapKit User Location significantly better than from CLLocationManager Indoors on an iPhone 4. WiFi disabled.. stuff like Foursquare shows a similar lack of accuracy. However if I switch over to another view in my app that uses Mapkit and check display the user location it is spot on. I mean to the house level accurate on the map which I would associate.. level accurate on the map which I would associate with WiFi level location or a strong GPS read. So I figured that Mapkit is likely relying on a cached location read that was derived when WiFi was enabled on my device. I turned off location services..

Mapkit, how to detect annotations have loaded

http://stackoverflow.com/questions/4083491/mapkit-how-to-detect-annotations-have-loaded

how to detect annotations have loaded I want the annotations callout to popup when the pin has finished it's drop animation...

iPhone Mapkit adding custom image and pins to annotations

http://stackoverflow.com/questions/4579397/iphone-mapkit-adding-custom-image-and-pins-to-annotations

Mapkit adding custom image and pins to annotations I am trying to change the pin colour from the default red to a custom image..