using google map v2 or v3 in android application?

android, google-maps-api-3

Solution

`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:

Google Maps API V2

Problem

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

Original source

Related problems