3

I have a custom SKCalloutView on Android, but the tail is following the marker, behaviour that I don't want.

Looking at the documentation for iOS i found that there they have the method "dynamicArrowPositioning", but was unable to find a similar method on the Android version of the API.

Does anyone know how to disable the dynamic arrow positioning?

SylviA
  • 1,577
  • 9
  • 13
Luan Barbosa
  • 462
  • 4
  • 16

1 Answers1

1

You’ll find in the SKCalloutView class the "showAtLocation" method- if you want to show the callout on map at the specified coordinates (showing or hiding the tail) http://developer.skobbler.com/docs/android/2.5.1/com/skobbler/ngx/map/SKCalloutView.html#showAtLocation

Or "redraw"-if you only want to modify view position and resize it http://developer.skobbler.com/docs/android/2.5.1/com/skobbler/ngx/map/SKCalloutView.html#redraw()

SylviA
  • 1,577
  • 9
  • 13
  • The showAtLocation and redraw does not solve my problem. I already showed the CalloutView, I want the equivalent in Android of iOS's "dynamicArrowPositioning" that locks the popup and the marker at the same position even when the user moves the map. – Luan Barbosa May 09 '16 at 11:24