Issue
Blinking of Pin while running on android device. Take a look at the gif attached.
I followed this sample & used Xamarin Forms WebView for displaying map. It works fine while running on browser.
Solution
If it's what I think it is, this is likely caused by the transition of the labels fading in and do collision detection. There isn't an option exposed to modify this fade in timing currently, but the following workaround appears to work for me.
After the map has loaded (in the ready event callback), add the following line of code:
map.map._fadeDuration = 0;
This overrides an internal, undocumented setting that the map uses when labels fade in. Using the above removes that delay.
Answered By - rbrundritt
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.