Questions tagged [ios6-maps]

Apple's mapping software introduced with IOS6 to replace the existing Google Maps integration.

Apple's mapping software introduced with IOS6 to replace the existing Google Maps integration.

With the release of IOS6, Apple removed the Google Maps app and have replaced it with their own version.

Users should be aware that there are a number of teething problems with the service at the moment.

This is now the default maps app for all IOS devices.

99 questions
4
votes
2 answers

Max zoom scale in iOS 6.0 maps?

i have been throtting through the iOS 6.0 Map documentation, but I am unable to find any way to define a max zoom on the MKMapView. Have anyone found a way to do this ? I had a method that worked on the 5.1.1 maps, but it listenes to zoomScale,…
Nils Munch
  • 8,670
  • 11
  • 48
  • 101
4
votes
1 answer

Is it possible to implement 3D mapviews with iOS 6

I would like to implement the great "Google Earth" look of the new iOS6 map app in 3D mode. I've looked thru the latest version of the MapKit framework, as well as Apple's doc set, and I can't find any mention of how to implement it. Does this…
CPLamb
  • 107
  • 1
  • 8
4
votes
2 answers

Let users choose between Google Maps and Apple Maps in IOS 6?

I am using basic MapKit functionality in my iOS app. Is there a way to let my iOS 6 users choose between Google and Apple maps for the mapping data presented within my app? If so, how can I do this programmatically?
Rob van den Berg
  • 770
  • 5
  • 21
3
votes
3 answers

set current location icon lower side in MKMapView

I want to show my current location lower in the map (iOS 6 and iOS 7) as per below screen shot to user can see further view [google default app with google map]. Right now, the cursor that shows center in the view as per below image [my app with…
jayraj m.g.
  • 720
  • 5
  • 18
3
votes
0 answers

Showing Route Between 2 Places Using Google Map iOS SDK

I want to draw a route between two points in Google Map using Google Map iOS SDK. Here I have two text fields From and To. I implemented Google auto-complete API for that 2 text fields. I am getting Latitude and Longitude of the two places. Now I…
Suresh Peddisetti
  • 3,634
  • 3
  • 21
  • 26
3
votes
1 answer

Is there any way to determine the driving time between two locations using Apple's Maps API?

I am evaluating using google's Distance Matrix / Places / Maps API, versus Apple's Maps api for an iOS app. I am looking at the MKDirectionsRequest class, and I can't seem to find a way to determine what the driving time is between the two points.…
wfbarksdale
  • 6,962
  • 11
  • 60
  • 87
3
votes
0 answers

iOS 6 Maps crash occasionally on iPad3 mainly when I rotate

I'm getting my application crashed when I rotate my iPad here below the detailed scenario I have a map screen where I display a map with couple of 'pins'/'annotations' , the screen works almost all the time perfectly but sometimes it crashes…
poa
  • 239
  • 3
  • 13
3
votes
1 answer

How to launch iOS Maps App with specific address in iOS 6?

I have an app in which I allow users to launch the Maps App (Google or Apple) to view an address. I used to do this: Address *address = [self.person.addresses objectAtIndex:0]; NSString *addressString = [NSString stringWithFormat:@"%@ %@ %@ %@, %@…
Tom Redman
  • 5,532
  • 4
  • 29
  • 42
3
votes
2 answers

How to draw routes on maps in ios 6?

I want to show maps & draw routes on maps. My application supports for ios 4 plus. So how should i use maps to work on ios 6 as well as before. Also i want to know sholud i use custom mapview in my app to display maps & routes or should i use …
Sayali
  • 593
  • 2
  • 9
  • 22
3
votes
4 answers

Routing Data for MKMapKit in iOS6

I have done routing in iOS apps before, but with iOS6 we are now displaying Apple maps - which causes a problem because we are using Google routing data and if we use Google data, we are supposed to be displaying it on a Google map. I have been…
Chris
  • 5,199
  • 15
  • 61
  • 124
3
votes
3 answers

Is it absolutely not possible to use Google maps in iOS 6..?

I want to know if is it not at all possible to use Google maps on iOS 6 ? I had one App prepared and now when I am using it iOS 6, It automatically takes Apple maps ! Since I dont want to use Apple maps, So I want to know if any how,Is it possible…
Shailesh
  • 2,888
  • 3
  • 22
  • 31
3
votes
1 answer

IOS6 Reverse Geocoding

I have an iPhone App (built using XCode 4.4.1 and OS target of IOS 5.1) that performs reverse geocoding using CLGeocoder. In my App I determine the title (for an annotation on a map) as follows: CLPlacemark *placemark = ...; NSString*…
3
votes
1 answer

iOS 6 Maps API: fleet management and business asset tracking

Prior to iOS 6, the ios maps api had restrictions for developers, imposed by Google, some of which are the following: 10.9 use the Service or Content with any products, systems, or applications for or in connection with: (a) real time navigation or…
ArkReversed
  • 138
  • 10
3
votes
1 answer

How to route between two addresses using the new iOS 6.0 maps?

I'm using the iOS 6.0 SDK and I would like to route between two different addresses (not latitude and longitude) with Apple's new iOS 6.0 maps. I would like to show the indications too. How can I do this?
user1679847
  • 233
  • 1
  • 4
  • 11
3
votes
1 answer

iOS6 mapkit span

The new maps provided with iOS6 do not allow a span lower than about .001. Has anyone else seen this issue? CLLocationCoordinate2D coord = {.latitude= 37.980600, .longitude= -87.593932}; MKCoordinateSpan span = {.latitudeDelta= 0.0, .longitudeDelta…
Erik Gross
  • 86
  • 4