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 have to implement a very custom tiled map layer/view on iOS5/6 (iPhone), which loads tiles as Images and/or data (JSON) from a server. It is like google maps, but at certain points very specific, so I cannot easily use a solution such as:

  1. google maps or
  2. route-me (used by MapBox)
  3. CATiledLayer in combination with UIScrollView

The thing is: None of the solutions out there really do help me, because of my specific specs. If you think, there is a suitable solution, please tell me!!!

If not:
Help me to find the best possible solution for my case!!!

"But why can I not use these beautiful solutions?"
There are a few limits, that have to be known:

  1. We only use 3 zoom-levels (0,1 and 2)

  2. Every tile has a number of 9 subtiles in the next zoomlevel (= zoom factor 3) (not like most of the other kits do with 4 subtiles = zoomfactor 2)

  3. The first layer has an initial size of (speaking in pixels / points is the half) 768*1024.
    The second layer is three times wider and higher (zoomfactor 3!!!) -> 2304*3072
    The third layer is equally wider and higher than the 2nd -> 6912*9216

  4. Each tile that comes from the server is 256x256 pixels

  5. So every sublayer 9-times the number of tiles (12 on 1st layer, 108 on 2nd, 972 on 3rd)

  6. Every tile has a background image (ca. 6KB in size) (loaded as image from the server) and foreground-information (loaded as JSON for every tile from the server - 10-15KB in size)
    -> the foreground information JSON contains either an overlay image (such as traffic in google) or local tile information to be drawn into the local tile coordinate space (like annotations, but per tile)

  7. I want to cache the whole background-tiles on disk, as they never change

  8. Either I want to cache the overlay-tile-images/overlay-tile-information for each tile for a certain amount of time, until it should be reloaded again

  9. Zooming should be with pinching and double-tapping

A few of my considerations:

  1. The caching is not the problem. I do it via CoreData or similar

  2. I thought of a UIScrollView, to show smooth scrolling

  3. I'd like to use pinching, so every time I break through the next zoomlevel, I have to draw the next zoom-level tiles

  4. The content should only be drawn in the visible area (for me on iPhone 5 320x500)

  5. Not visible tiles should be deleted, to be memory efficient. But they should not be deleted instantly, only if a tile is away a certain amount of pixels/points from the visible center. There should be a "display-cache", to instantaneously show tiles, which were just loaded and displayed. Or is there a better technique out there?

  6. I can load the background instantly from disk or from the server asynchronously, as I know which tiles are visible. So do I with the tile-JSON. Then I extract the JSON-information for the tile ("is the overlay a direct image or information such as a city name, which I have to draw into the tile") and draw or load the overlay (from DB/Disc or Server)

  7. Is UIScrollView efficient enough to handle the max size of the tile view

  8. Should I use a CALayer as sublayer to draw into it? Should I use Quartz to draw directly on a big "canvas"?

Now it's your turn !!!

share|improve this question
Can't vote to close because the question has a bounty, but this question is too broad. You should ask specific things instead listing a dozen requirements. – Jano Feb 24 at 12:00

3 Answers

Apple has an example that shows zooming into a single image very deep. They use a CATiledLayer for this.

The example can be found here: http://developer.apple.com/library/ios/#samplecode/PhotoScroller/Introduction/Intro.html

The example works with subtiles that are stored on the phone but maybe it can be adapted to your problem.

share|improve this answer
CATiledLayer would be really perfect. But we have a zoom-factor of 3, instead of 2, like it is in nearly all map views and also in CATiledLayer – Fab1n Feb 22 at 13:54

I have used my own TiledLayer implementation for these type of non-standard tiling issues that CATiledLayer does not support (and because CATiledLayer still has some unsolved bugs).

That implementation is now available on Github.

Fab1n: this is same implementation that I already sent you by e-mail.

share|improve this answer
thanks a lot. I realized, my project is to specific to use yours, but good job. Other ones are gone a use it... – Fab1n Mar 1 at 15:34
As I cannot give anyone else the bounty, you'll get it because of your great support, that you showed me. You deserve it. – Fab1n Mar 1 at 15:46
up vote 0 down vote accepted

I came up with a very neat and nice solution (custom TiledLayer implementation):

I don't use CATiledLayer as contentView of the scrollView anymore. Instead I added a CALayer subclass to it and added my tiles to it as sublayers. Each tile contains the tile bitmap as contents. When zooming in with the scrollview I switch tiles manually based on the current zoomlevel. Thats perfect!!!

If somebody wants to know details of the implementation -> no problem, write a comment and I post it here.

share|improve this answer
is this my implementation you are talking about, or did you roll your own? – fishinear Mar 1 at 15:17

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.