Skip to content

Instantly share code, notes, and snippets.

@sbis04

sbis04/main.dart Secret

Created May 30, 2020 09:16
Show Gist options
  • Save sbis04/ee429c0cae322924a351583b21c5c49e to your computer and use it in GitHub Desktop.
Save sbis04/ee429c0cae322924a351583b21c5c49e to your computer and use it in GitHub Desktop.
// Move camera to the specified latitude & longitude
mapController.animateCamera(
CameraUpdate.newCameraPosition(
CameraPosition(
target: LatLng(
// Will be fetching in the next step
_currentPosition.latitude,
_currentPosition.longitude,
),
zoom: 18.0,
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment