1. Map SDK Download
The main map of the Android SDK includes the Map SDK, the Search SDK, and the Location SDK. The Map SDK includes the 2D Map SDK and the 3D Map SDK.
3D SDK, provide vector map display, offline map and other functions.
The SDK provides grid map display, overlay rendering and other functions.
Search SDK, provide points of interest search, path planning, bus query, geocoding and other functions.
Locate the SDK and provide location, inverse geocoding (text description of addresses), and geo-fencing capabilities.
http://lbs.amap.com/api/android-sdk/down/(Map SDK and search SDK), http://lbs.amap.com/api/android-location-sdk/down/( Positioning SDK)
is a simple introduction to the SDK, this article uses 3D map SDKv3.1.0 version.
Configure the Gold Map development environment under 2.Android Studio
2.1 Unzip the downloaded SDK package, copy the map package, search for the package, locate the package into the project's Libs directory, and simultaneously copy the map so file to the Armeabi under Jnilibs. As shown in the following:
2.2 Right-click Add as Class library, such as:
2.3 Code obfuscation and permissions configuration
This main reference official document (http://lbs.amap.com/api/android-sdk/guide/project/, note here that in Project confusion is, be sure to include the following configuration in the Proguard-rules.pro file, such as:
3. Application for Apikey
This step, you need to register a gold map account, detailed process reference website (Http://id.amap.com/?ref=http%3A%2F%2Flbs.amap.com%2Fconsole%2F).
Android Gold Map Development--Preparation phase