Search This Blog

Tuesday, 8 March 2011

Google Map :- Give The Current Location as well as Touchable Current Location

1).  Get Google Maps API Key and KeyStore File

2). Create New Project


===================================================================
3). //XML File

main.xml
===================================================================

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <com.google.android.maps.MapView
        android:id="@+id/mapView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:enabled="true"
        android:clickable="true"
        android:apiKey="0IHqSXChliCK94lmqnm0bdiNjkuXxL1kPsaP-gg"
        />
</LinearLayout>

===================================================================

4). //Write Code

GPSLocatorActivity .java

===================================================================
package com.VertexVerveInc.GPSLocator;


import java.io.IOException;
import java.util.List;
import java.util.Locale;

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Point;
import android.location.Address;
import android.location.Geocoder;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.view.MotionEvent;
import android.widget.Toast;

import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;
import com.google.android.maps.Overlay;

public class GPSLocatorActivity extends MapActivity {
private MapView mapView;
private MapController mapController;

    private LocationManager locationManager;
    private LocationListener locationListener;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
      
        locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);  
      
        locationListener = new GPSLocationListener();
      
        locationManager.requestLocationUpdates(
            LocationManager.NETWORK_PROVIDER,
            0,
            0,
            locationListener);
      
        mapView = (MapView) findViewById(R.id.mapView);
      
        // enable Street view by default
        mapView.setStreetView(true);
      
        // enable to show Satellite view
      //  mapView.setSatellite(true);
      
        // enable to show Traffic on map
        // mapView.setTraffic(true);
        mapView.setBuiltInZoomControls(true);
      
        mapController = mapView.getController();
        mapController.setZoom(16);
    }
  
    @Override
    protected boolean isRouteDisplayed() {
        return false;
    }
  
    private class GPSLocationListener implements LocationListener
    {
        @Override
        public void onLocationChanged(Location location) {
            if (location != null) {
                GeoPoint point = new GeoPoint(
                        (int) (location.getLatitude() * 1E6),
                        (int) (location.getLongitude() * 1E6));
              
                /* Toast.makeText(getBaseContext(),
                        "Latitude: " + location.getLatitude() +
                        " Longitude: " + location.getLongitude(),
                        Toast.LENGTH_SHORT).show();*/
                              
                mapController.animateTo(point);
                mapController.setZoom(16);
              
                // add marker
                MapOverlay mapOverlay = new MapOverlay();
     mapOverlay.setPointToDraw(point);
     List<Overlay> listOfOverlays = mapView.getOverlays();
     listOfOverlays.clear();
     listOfOverlays.add(mapOverlay);
    
                String address = ConvertPointToLocation(point);
                Toast.makeText(getBaseContext(), address, Toast.LENGTH_SHORT).show();

                mapView.invalidate();
            }
        }
      
        public String ConvertPointToLocation(GeoPoint point) {
         String address = "";
            Geocoder geoCoder = new Geocoder(
                    getBaseContext(), Locale.getDefault());
            try {
                List<Address> addresses = geoCoder.getFromLocation(
                 point.getLatitudeE6()  / 1E6,
                    point.getLongitudeE6() / 1E6, 1);

        if (addresses.size() > 0) {
            for (int index = 0; index < addresses.get(0).getMaxAddressLineIndex(); index++)
             address += addresses.get(0).getAddressLine(index) + " ";
        }
            }
            catch (IOException e) {              
                e.printStackTrace();
            }
          
            return address;
        }

        @Override
        public void onProviderDisabled(String provider) {
        }

        @Override
        public void onProviderEnabled(String provider) {
        }

        @Override
        public void onStatusChanged(String provider, int status, Bundle extras) {
        }
    }
  
    class MapOverlay extends Overlay
    {
     private GeoPoint pointToDraw;
    
     public void setPointToDraw(GeoPoint point) {
     pointToDraw = point;
     }

     public GeoPoint getPointToDraw() {
     return pointToDraw;
     }
    
        @Override
        public boolean draw(Canvas canvas, MapView mapView, boolean shadow, long when) {
            super.draw(canvas, mapView, shadow);                

            // convert point to pixels
            Point screenPts = new Point();
            mapView.getProjection().toPixels(pointToDraw, screenPts);

            // add marker
            Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.mapmarker);
            canvas.drawBitmap(bmp, screenPts.x, screenPts.y - 24, null); // 24 is the height of image      
            return true;
        }
      
        @Override
        public boolean onTouchEvent(MotionEvent event, MapView mapView)
        {
         GPSLocationListener loc=new GPSLocationListener();
            //---when user lifts his finger---
            if (event.getAction() == 1) {              
                GeoPoint p = mapView.getProjection().fromPixels(
                    (int) event.getX(),
                    (int) event.getY());
              
//                    Toast.makeText(getBaseContext(),
//                        p.getLatitudeE6() / 1E6 + "," +
//                        p.getLongitudeE6() /1E6 ,
//                        Toast.LENGTH_SHORT).show();
              
              
                // add marker
                MapOverlay mapOverlay = new MapOverlay();
     mapOverlay.setPointToDraw(p);
     List<Overlay> listOfOverlays = mapView.getOverlays();
     listOfOverlays.clear();
     listOfOverlays.add(mapOverlay);
              
                    String address = loc.ConvertPointToLocation(p);
                    Toast.makeText(getBaseContext(), address, Toast.LENGTH_SHORT).show();
                  
                  
            }                          
            return false;
        }      
      
    }
}

No comments:

Post a Comment