Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the dependencies of Google Maps v2?

I am new to Android and want to embed Google Maps v2 to my application, but can anyone please tell me which dependencies should I install on phone or include to project?

like image 797
Ihsan chahi Avatar asked Jul 12 '13 09:07

Ihsan chahi


People also ask

How do I enable Google Maps API v2?

Click on the “APIs & auth” menu on the left, and from the submenu select APIs. From the list of APIs that appear, scroll down and ensure that Google Maps Android API v2 is set to “On”.

What type of API is Google Maps?

The Google Maps Geocoding API is the answer. This API can automatically determine an address based on a pin drop. The other way around, Geocoding can also convert addresses into geographic coordinates.

Does Google Maps have an API?

The Google Maps Platform is a set of APIs and SDKs that allows developers to embed Google Maps into mobile apps and web pages, or to retrieve data from Google Maps.

How to add Google map dependency in Android Studio?

Run the utility demo app Download the repository using one of the options mentioned above. In Android Studio, choose File -> New -> Import Project. Browse to and select (double-click) the android-maps-utils directory that was created when you cloned the utility library. Android Studio now builds the project.


1 Answers

Include Gradle dependency:

dependencies {
    implementation 'com.google.android.gms:play-services-maps:16.1.0'
}

You may found Gradle, please helpful. Also, check out this page for Android APIs releases.

like image 147
naXa Avatar answered Oct 21 '22 09:10

naXa