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

后端 未结 4 962
攒了一身酷
攒了一身酷 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:44

    It works great, but it seemed to me that sometimes the marker remained one step far from the target, so I added just one more line:

    if (t < 1.0) {
        // Post again 10ms later.
        handler.postDelayed(this, 50);
    } else {
        // animation ended
        marker.setPosition(target);
    }
    

    Hope it helps.

提交回复
热议问题