I am using Stream Builder that sends api request after some seconds and fetch coordinates (lat, lng).
I want to update the map location (camera position & marker) on newly fetch coordinates.
But Camera position is updating and not focusing on new coordinates.
My google map widget is inside of stream builder and in which we are passing data through snapshot
e.g latlng = LatLng(snapshot.data['lat'],snapshot.data['lng'])
to markers: SetMarker( markers, markerID, latlng, ),
& initialCameraPosition: CameraPosition( target: latlng, zoom: 9.0, )