Fix for disappearing places picker marker#584
Conversation
LukasPaczos
left a comment
There was a problem hiding this comment.
Looks good to me, thanks @langsmith 🚀
| public void onCameraIdle() { | ||
| Timber.v("Map camera is now idling."); | ||
| markerImage.animate().yBy(Math.abs(markerImage.getTranslationY())) | ||
| markerImage.animate().translationY(Math.abs(mapView.getY() / 2)) |
There was a problem hiding this comment.
Actually, as the markerImage has view constraints to its parent, just markerImage.animate().translationY(0) should be enough here.
|
Any chance we can do a new release of the Places Plugin in the next couple of weeks @LukasPaczos @zugaldia ? A release hasn't gone out since this pr was merged into cc @riastrad in case you get any future inbound questions about this. |
|
I agree with @langsmith that the plugin is due for a new release. @LukasPaczos @osana can you tandem to release a new version of the places plugin? I'll defer to you on timing, the upcoming |
|
@zugaldia could you explain or direct me to any information about the "frappe" release? I had not heard of it before now, thank-you |
|
@bradjonesca my bad, I should have provided a better explanation :) |

@tobrun @LukasPaczos
Resolves #529 by fixing the floating marker in the place picker functionality of the places plugin. In my opinion, this bug renders the picker essentially unusable.
If you share my slight concern that
mapView.getY() / 2isn't the most performant fix, given that it happens every time thatonCameraIdle()fires, I'm happy to hear other ideas for fixing.