English 中文(简体)
ICT Mapkit - Cachemap?
原标题:iOS Mapkit - Cache maps?

在没有互联网连接的情况下,我需要某些地区的地图。

希望:

  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

我如何这样做?

最佳回答
问题回答

似可参考上述内容 谷歌透镜就是这样做的,但另一种做法是利用谷歌习俗地图或其他一些服务制作KML文档,然后下载和展示。 可见here。 或者,地图Box的这种功能已经建立起来。 Go to this webpage,分点指挥-f和搜索“offline”,并将找到相关信息。 最后一项建议是,如果没有任何其他选择,那么你可以尝试为该地区节省山洞地图网页的html,然后从你的主要篮子中把该档案装入你的地图。 如果能做到这一点,我没有任何想法,但在最后一种情况下,它会受到枪击。





相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签