1. Урок 1. 00:02:19
    Generating a Google Maps/Places/Directions API key
  2. Урок 2. 00:00:27
    Introduction
  3. Урок 3. 00:00:30
    Install React Native first!
  4. Урок 4. 00:01:21
    Init with correct React Native version
  5. Урок 5. 00:00:35
    Check if build succeeds!
  6. Урок 6. 00:00:49
    react-native-maps documentation intro
  7. Урок 7. 00:00:23
    yarn add react-native-maps
  8. Урок 8. 00:01:10
    Git init & react-native link
  9. Урок 9. 00:00:37
    Changed files from linking
  10. Урок 10. 00:00:37
    Check if build succeeds after linking!
  11. Урок 11. 00:03:03
    Creating a MapView test component
  12. Урок 12. 00:01:52
    Ensure emulator has Google API's!
  13. Урок 13. 00:00:35
    Intro to manual install and docs
  14. Урок 14. 00:00:57
    Undoing Android link changes
  15. Урок 15. 00:04:26
    Android react-native-maps manual steps
  16. Урок 16. 00:01:08
    Remove PROVIDER_GOOGLE
  17. Урок 17. 00:00:45
    Performance issues on iPhone X simulator
  18. Урок 18. 00:02:50
    Setting a full screen layout
  19. Урок 19. 00:01:00
    Intro to section
  20. Урок 20. 00:03:01
    A little refactor
  21. Урок 21. 00:02:25
    Enabling user location in MapView
  22. Урок 22. 00:07:05
    Asking for location permissions in Android
  23. Урок 23. 00:10:17
    Getting the user's latitude and longitude
  24. Урок 24. 00:07:56
    Learn how to use Places Autocomplete API with Postman
  25. Урок 25. 00:03:30
    Restructuring and creating PlacesInput component
  26. Урок 26. 00:02:23
    Styling PlaceInput component
  27. Урок 27. 00:04:16
    Calling Places Autocomplete API in React Native
  28. Урок 28. 00:03:38
    Showing Places API predictions in React Native
  29. Урок 29. 00:05:07
    Styling place predictions
  30. Урок 30. 00:02:49
    DIsplay predictions based on input
  31. Урок 31. 00:03:58
    Refactoring
  32. Урок 32. 00:02:22
    Tap anywhere to dismiss keyboard
  33. Урок 33. 00:03:45
    Using debounce to limit API calls
  34. Урок 34. 00:09:50
    Hiding list of predictions on tapping
  35. Урок 35. 00:01:55
    How do we get latitude and longitude to PlaceInput?
  36. Урок 36. 00:03:59
    Moving location state to parent component
  37. Урок 37. 00:02:38
    Using device location for Places Autocomplete
  38. Урок 38. 00:00:36
    Intro to section and remember to check out repository!
  39. Урок 39. 00:06:47
    Calling Directions API in Postman
  40. Урок 40. 00:03:13
    Passing Place ID to App
  41. Урок 41. 00:05:06
    Calling Directions API in React Native
  42. Урок 42. 00:02:21
    How Polyline works
  43. Урок 43. 00:05:38
    Converting Polyline to Latitude and Longitude array
  44. Урок 44. 00:05:38
    Time to draw the Polyline in map!
  45. Урок 45. 00:02:22
    How do we zoom out to show route?
  46. Урок 46. 00:04:09
    Refactoring MapScreen
  47. Урок 47. 00:01:13
    Calling FitToCoordinates on our ref
  48. Урок 48. 00:01:54
    Adding edgePadding
  49. Урок 49. 00:06:41
    Adding a Marker and tidying up code