Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
189 views

Why does MKMapView show incorrect radius

enter code hereMKCoordinateRegion viewRegion; viewRegion = MKCoordinateRegionMakeWithDistance(CLLocationCoordinate2DMake(51.4998844,-0.1261814), 10*1000, 10*1000); [mapView setRegion:viewRegion ...
2
votes
2answers
180 views

MKCoordinateRegion distance between center and borders

(Revised Question based on comment:) OK I will try to ask in other way...How can I get border coordinates of this circle overlay: (Original Question:) I am having weird problem with my iPhone ...
2
votes
0answers
281 views

MKMapView span doubling bug

Setting the region in MKMapView occasionally results in the span being doubled. This bug seems to appear early in the map initialization phase. Although it's been reported elsewhere I wasn't able to ...
1
vote
1answer
264 views

MKCoordinateSpanMake: why specify longitude AND latitude delta?

If the distance corresponding to one degree of longitude is a function of latitude, why do you have to specify longitudeDelta and latitudeDelta when calling MKCoordinateSpanMake in the iOS MapKit? ...
1
vote
2answers
120 views

MKCoordinateregion's center changes when span changed - iphone

I have a MKCoordinateregion called region. I want to change span of this region without changing it's center. I am using following method to change zoom. -(void) changeZoom { ...
1
vote
1answer
325 views

How to make the union between two MKCoordinateRegion

I'm trying to do the union between two MKCoordinateRegion. Does anybody have an idea on how to do this? Thanks in advance
1
vote
2answers
193 views

How do can I add 2 miles to viewRegion.span.latitudeDelta?

How do can I add 2 miles to viewRegion.span.latitudeDelta ? How do can I calculate kTwoMiles? MKCoordinateRegion viewRegion; viewRegion.center = coordinateCentre; viewRegion.span.latitudeDelta = ...
1
vote
1answer
489 views

How to store current MKCoordinateRegion or zoom level?

I have an app which is providing a zoomable MKMapView to the user. I want to be able to store the user's preferred coordinates and zoom level for when the map view is first displayed. Currently, in ...
1
vote
2answers
1k views

Zoom to fit region for all annotations - ending up zooming in between annotations

I have a problem with fitting all my annotations to the screen... sometimes it shows all annotations, but some other times the app is zooming in between the two annotations so that none of them are ...
1
vote
1answer
621 views

Will treating MKCoordinateRegion like a rectangle come back to haunt me?

Background: I'm build a series of location-based apps that make heavy use of maps. These maps are annotated with locations fetched from a server, to which I pass regions of the map I need data for ...
1
vote
1answer
291 views

iPhone dev - showing two locations on the map

Now I have the coordinate of two locations, let say locationA with latitude 40 and longitude -80, locationB with latitude 30 and longitude -70, I want to create a mapView that I can see both ...
0
votes
1answer
30 views

MKMapView Zoom Out without using didAddAnnotationViews:

I am tryng to find a way to do a zoom in and out via a button. If I put code within this method: didAddAnnotationViews it will set the initial zoom perfectly. I tried to get the zoom to change with ...
0
votes
1answer
100 views

iOS MapKit userLocation returning zero on first call, but

I have a curious issue that I can't explain and was wondering if anybody has encountered the same problem. I have a MKMapView that displays the user's current location, and is written to center the ...
0
votes
3answers
121 views

how to start off with “my” coordinates from MKCoordinateRegion?

i'm wondering how i can make this code work : when i click on a cell, i call the DetailViewController, which is a map with the coordinates of San Francisco. But my map shows only the "world" map, and ...
0
votes
1answer
238 views

Could a mapView.region.span.longitudeDelta or mapView.region.span.latitudeDelta be negative?

Could a mapView.region.span.longitudeDelta or mapView.region.span.latitudeDelta be negative ?
0
votes
1answer
1k views

How can I pass latitude and longitude values from UIViewController to MKMapView?

I have a detail view that includes three UIButtons, each of which pushes a different view on to the stack. One of the buttons is connected to a MKMapView. When that button is pushed I need to send the ...
0
votes
2answers
1k views

Get TopLeft and BottomRight from MKCoordinateRegion MKMapView

I checked the properties in documentation for MKCoordinateRegion, MKCoordinateSpan and MKMapView to see there is a way to get the TopLeft and BottomRight Lat Long from the map view and I didn't find ...
0
votes
1answer
900 views

Load additional objects from Core Data when a user scrolls an MKMapView

With MapKit in the iPhone 3.0 SDK, you create objects that conform to the MKAnnotation protocol. Loading these onto the MKMapView is very easy. However, when a user scrolls the MKMapView, it's time to ...
-1
votes
1answer
20 views

iPhone4(s) - my findings of regionMonitoring feature

In my testing, I have found that the results of my tesing regionMonitoring on iPhone4S has been a little under par. That being said, here's what's happening in my testing: I try to test by setting ...