Strange behaviour of MapKit pin Annotations

126 Views Asked by At

when i am placing 5 pin on mapView with same address but callout bubble is shown only for two pin when the we taps a selected annotation view. When i tap pin then callout display only for two pins.

How to resolve this, i want to show callout of all pins even they have same address.

2

There are 2 best solutions below

7
On

This happens because the zoomlevel of your map is not proper as per your coordinates requirements. Although you have annoted five pins at same address there should be minor difference into coordinates, to get separated.

You should work on longitudeDelta & latitudeDelta to get over this.

For ex. You can set

<coordinate_object>.latitudeDelta = 0.04;
        <coordinate_object>.longitudeDelta = 0.04;

The lesser the delta value there is higher a zoom level and vice-a-versa.

Enjoy Programming!

0
On

Before adding each annotation to the map you should check if there is already another annotation at the same place, or within a few meters. If so then combine the data for these annotations into a structure that can keep growing (NSMutableArray is my first guess) and then add that combined data as a new annotation*. Then when the pin is tapped it will ask for the call out details and tell you which annotation was tapped, you can check if the annotation has one datum or multiple data at set up your callout correctly. You'll need to have a custom annotation class but you would probably have needed that anyway if you're storing useful data about each one.

*you'll also need to ensure the first annotation is not left on the map, so maybe you could do a scan through your data and combine into arrays before doing any annotation stuff. Each annotation would store an array of values, most of them would only have one, but where they are too close together the array would have many values and your callout function would have to display that.