您的位置:首页 > 移动开发 > Android开发

Android working with Google Maps V2

2016-01-21 15:35 453 查看
If you have developed any app that contains Google Maps v1, It’s time to upgrade it to Google Maps V2 as google maps version 1 deprecated officially on December 3rd, 2012 and it won’t work anymore. This article aims to give knowledge about how to implements
newer Google Maps into your applications. If you have already worked with V1, implementing V2 is very easy. Refer Google
Maps Docs for any topic that is not covered in this tutorial.





Before starting a new project, we need to go through some pre required steps. These steps involves importing required library, generating SHA1 fingerprint and configuring maps in google console.


1. Downloading Google Play Services

Google made new Maps V2 API as a part of Google Play Services SDK. So before we start developing
maps we need to download google play services from SDK manger. You can open SDK manager either from Eclipse or from android sdk folder.

Open Eclipse ⇒ Windows ⇒ Android SDK Manager and check whether you have already downloaded Google Play Services or not under Extras section. If not select play services and install the
package.




2. Importing Google Play Services into Eclipse

After downloading play services we need to import it to Eclipse which will be used as a library for our maps project.

1. In Eclipse goto File ⇒ Import ⇒ Android ⇒ Existing Android Code Into Workspace

2. Click on Browse and select Google Play Services project from your android sdk folder. You can locate play services library project from

android-sdk-windows\extras\google\google_play_services\libproject\google-play-services_lib

3. Importantly while importing check Copy projects into workspace option as shown in the below image.




3. Getting the Google Maps API key

1. Same as in maps v1 we need to generate SHA-1 fingerprint using java keytool.
Open your terminal and execute the following command to generate SHA-1 fingerprint.

On Windows

On Linux or Mac OS

In the output you can see SHA 1 finger print.



2. Now open Google API Console

3. Select Services on left side and turn on Google Maps Android API v2



4. Now select API Access on left side and on the right side click on Create new Android key…



5. It will popup a window asking the SHA1 and package name. Enter your SHA
1 and your android project package name separated by semicolon ; and
click on create.



I have given like below

And note down the API key which required later in our project.




4. Creating new Project

After completing required configuration, It’s time to start our project.

1. In Eclipse create a new project by going to File ⇒ New ⇒ Android Application Project and fill required details. I kept my project name as Google
Maps V2 and package name as info.androidhive.info

2. Now we need to use Google Play Services project as a library to use project. So right click on project and select properties. In the properties
window on left side select Android. On the right you can see a Addbutton under library section. Click it and select google play services project
which we imported previously.







3. Add the Map Key in the manifest file. Open AndroidManifest.xml file
and add the following code before tag. Replace the android:value with your map key which
you got from google console.

4. Google maps needs following permissions and features.

ACCESS_NETWORK_STATE – To check network state whether data can be downloaded or not

INTERNET – To check internet connection status

WRITE_EXTERNAL_STORAGE – To write to external storage as google maps store map data in external
storage

ACCESS_COARSE_LOCATION – To determine user’s location using WiFi and mobile cell data

ACCESS_FINE_LOCATION – To determine user’s location using GPS

OpenGL ES V2 – Required for Google Maps V2

Finally my AndroidManifest.xml file looks like this (Replace the package name with your project
package)

AndroidManifest.xml

5. New google maps are implemented using MapFragments which
is a sub class of Fragments class. Open your main activity layout file activity_main.xml file
and add following code. I usedRelativeLayout as a parent element. You can remove it and use
MapFragment directly.

activity_main.xml

6. Add the following code in your Main Activity java (MainActivity.java)
class.

MainActivity.java

Run your project and congratulations if you see a map displaying on your device.




Placing a Marker

You can place a marker on the map by using following code.




Changing Marker Color

By default map marker color will be RED. Google maps provides some set of predefined colored icons for the marker.




Custom Marker Icon

Apart from maps native marker icons, you can use own image to show as a marker. You can load the icon from any kind of supported sources.

fromAsset(String assetName) – Loading from assets folder

fromBitmap (Bitmap image) – Loading bitmap image

fromFile (String path) – Loading from file

fromResource (int resourceId) – Loading from drawable resource

Below I loaded a custom marker icon from drawable folder


Moving Camera to a Location with animation

You may want to move camera to a particular position. Google maps provides set of functions to achieve this.

Following are enhancements and features that google maps provides. You can utilize these features which suites to your requirements.


Changing Map Type

Google provides 4 kinds of map types Normal, Hybrid, Satellite and Terrain. You can toggle to any kind of map
using googleMap.setMapType() method.




Showing Current Location

You can show user’s current location on the map by calling setMyLocationEnabled(). Pass true
/ false to enable or disable this feature


Zooming Buttons

You can call setZoomControlsEnabled() function to get rid of those zooming controls on the
map. By disabling these buttons map zooming functionality still work by pinching gesture.


Zooming Functionality

You can disable zooming gesture functionality by calling setZoomGesturesEnabled()


Compass Functionality

Compass can be disabled by calling setCompassEnabled() function


My Location Button

My location button will be used to move map to your current location. This button can be shown / hidden by calling setMyLocationButtonEnabled() function


Map Rotate Gesture

My rotate gesture can be enabled or disabled by calling setRotateGesturesEnabled() method

Although google maps provides lot of other features, I covered only basic topics in this tutorial. Remaining topics seems to be pretty much lengthy, so I’ll post them as separate articles.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  谷歌地图 app