2

When tapping on a custom poi on the map, acalloutView should appear. ThedidSelectCustomPOI delegate method gets executed and thecalloutView appears only when the map is zoomed in very close to the custom poi.

I'm getting this issue since i've updated the Skobbler sdk to 2.4.0.

Ashok Londhe
  • 1,462
  • 10
  • 28
Mo Al Waili
  • 180
  • 1
  • 9

1 Answers1

1

See the annotationTapZoomLimit property - by default it is set to zoom level 12 - most likely this is stopping you from tapping the annotations (decrease it to enable interactions at lower zoom levels)

Ando
  • 10,317
  • 2
  • 27
  • 44
  • SKMapSettings *mapSettings = [SKMapSettings mapSettings]; mapSettings.annotationTapZoomLimit = 2; I've added these lines of code, but the problem isn't solved yet – Mo Al Waili May 19 '15 at 10:58
  • Hmm… the other thing I can think of is the "click" area – it could be that there is a difference between what "clickable" area you are seeing and what is actually clickable. Could you send to dev(at)skobbler.com the code & artefacts you are using as annotation icons? (views, how you create annotations, map settings). – Ando May 21 '15 at 11:30
  • 2.5 years old solution, but it saved me today! +1 for the question and +1 for the answer. – Sumit Anantwar Dec 01 '17 at 21:54