Track user current location in movement without flyto animation

Hi, I have a web map for follow or tracking user location.

When user is moving the blue point fly to new position, by default the map is moved using fly animation, but this don’t look good because poi are removed and added again to map on each little movement.

Anyway to move the current user location (when use browser geolocation) without animate by flyto location.

Here is the code snap.

		map.on('load',function(){
			map.addControl(new tt.GeolocateControl({
   				positionOptions: {
       			enableHighAccuracy: true
   				},
   			trackUserLocation: true		
}));
		})

Thans in advance.

Regards,
José

have you tried to set:

fitBoundsOptions : {
  linear: true
}