Drop marker slowly from top of screen to location on android map V2

后端 未结 4 958
攒了一身酷
攒了一身酷 2021-02-03 16:18

I am using android maps v2works fine I can add and remove markers onLong Touch on locations.

Problem: I would like to drop the marker slowly into the to

4条回答
  •  天涯浪人
    2021-02-03 16:41

    I've applied your way but have an issue that is the markers position on map is not correct. I think command below calculate is not correct. So after animation finished then final result is not same as original Lat,Lng.

    double lng = t * target.longitude + (1 - t) * startLatLng.longitude; double lat = t * target.latitude + (1 - t) * startLatLng.latitude;

提交回复
热议问题