You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 8, 2019. It is now read-only.
I need to display 2/more pins as single pin if they are overlapping/touch each other.
This library has some hard coded value (magic number) which we are not sure how they are calculated (nothing has been defined in doc as well).
FYI: Our custom annotation size is 48*48.
Please let us know. We are referring to this method:
float TBCellSizeForZoomScale(MKZoomScale zoomScale)
{
NSInteger zoomLevel = TBZoomScaleToZoomLevel(zoomScale);
switch (zoomLevel) {
case 13:
case 14:
case 15:
return 64;
case 16:
case 17:
case 18:
return 32;
case 19:
return 16;
default:
return 88;
}
}
The text was updated successfully, but these errors were encountered:
Nope, I used GoogleMap(iOS) SDK in my last project, they have default handling for clustering, also added zip from previous project..may be I have changed something in those files..Good luck
I need to display 2/more pins as single pin if they are overlapping/touch each other.
This library has some hard coded value (magic number) which we are not sure how they are calculated (nothing has been defined in doc as well).
FYI: Our custom annotation size is 48*48.
Please let us know. We are referring to this method:
The text was updated successfully, but these errors were encountered: