When i change the position of marker it doesn't get changed until i zoom in and zoom out in android, Also the cluster flicker markers whose position get change also get clustered with cluster at other positions how to solve this issue.
And code i use to change the position of markers is
for (int j = 0; j < person_markerList.size(); j++) {
if(person_markerList.get(j).name.equals("Shivam")||person_markerList.get(j).name.equals("Goury"))
{
person_markerList.get(j).setPosition(new LatLng(28.612053,77.255001));
person_markerList.get(j).setAddress(getAddress(new LatLng(28.612053,77.255001)));
}
}
Please help me out