Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. LatLng _lastMapPosition = _center;
  2.  
  3. void _onCameraMove(CameraPosition position) {
  4. _lastMapPosition = position.target;
  5. }
  6.  
  7. @override
  8. Widget build(BuildContext context) {
  9. return MaterialApp(
  10. ...
  11. GoogleMap(
  12. ...
  13. onCameraMove: _onCameraMove,
  14. ),
  15. );
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement