views:

28

answers:

1

Playing around with MapKit and I'm wondering ...

Is it possible to determine where on the screen (the x and y) the blue dot representing your location sits as you move the map around?

I recognize it starts out in the center of the screen ... but if you start to move the map it sticks with it.

Thanks -wg

+1  A: 

Call [map convertCoordinate:toPointToView:] to convert map.userLocation.location.coordinate to the coordinate system of a view of your choice.

Ole Begemann