Reputation: 83
I am making a project on tourist guidance system on android. I wanted to include google maps in my application and wanted to know whether to use google maps API v3 or v2? Also, I cannot find any tutorial that tells me how to include v3. Any help would be appreciated. thank you
Upvotes: 8
Views: 12696
Reputation: 668
In 2013 v2 is valid but now v3 is latest for android map check below thread https://stackoverflow.com/a/41549359/2888952
Upvotes: 0
Reputation: 1838
Google Maps API v2 provide specific api for android.
Wih the api for web development ,Google Maps API v3 has been designed to load quickly and work well on mobile devices. In particular, focused on development for advanced mobile devices such as Android and iOS handsets.googlemap#mobile
use google map v3 in android with webview and javascript interface.
Here google map v3 a blog guide I wrote on how to use Google Maps API V3 in your android application.
Upvotes: 1
Reputation: 2290
The latest version of the Maps API for Android is v2, v3 is for the web.
https://developers.google.com/maps/documentation/android/
Upvotes: 1
Reputation: 41099
Google Maps API V2
is the native version of Google maps, while Google Maps API V3 is new API for web development, you could use the API V3 and embed it into a WebView
, but if you want to achieve the best result you should use Google Maps API V2 for Android.
Here a blog guide I wrote on how to embed Google Maps API V2 in your application that you can use to get started:
Upvotes: 15