Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need maps of certain areas available when no internet connection is available.

It would be like this:

  1. User loads app internet connection is available
  2. App downloads list of coordinates and places pins on the map
  3. User leaves their house and has no internet connection
  4. Pins and map remain readily available for user to interact with, even without internet connection

How do I do this?

share|improve this question
Check the Google Maps API terms of service, particularly section 10.1.3(b). It's not clear that this is a permitted use. – Caleb Oct 8 '11 at 13:18

1 Answer

up vote 4 down vote accepted

You probably won't use MKMapView and MapKit for that, but the Google Maps Static API that allows you to download static images (even with pins on it) directly.

Here is the example given by the Google Maps API doc itself

Then you can store this image and display it in an UIImageView in a UIScrollView for example.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.