Demo Aplikasi tentang pariwisata dengan animasi mobil berjalan
# Demo
Youtube Link: "https://youtu.be/asxeSeEQw7g"
APIs yang digunakan
- Google Maps Api
- Google Maps Directions API
- Volley
Steps:
- Ganti polyline dengan parameter tempat yang anda inginkan:
"https://maps.googleapis.com/maps/api/directions/json?" + "mode=driving&" + "transit_routing_preference=less_driving&" + "origin=" + latitude + "," + longitude + "&" + "destination=" + destination + "&" + "key=" + getResources().getString(R.string.google_directions_key)
The application uses Google Maps Api Key and Google Map Directions key. Get these api key on google developers console after enabling them for your project. Replace your google maps directions api key in strings.xml and google maps key in google_maps_api.xml. For convenience a TODO has been added there just follow them.
This source code inspired by amanjeetsingh150 https://github.com/amanjeetsingh150