获取当前位置

时间:2010-02-23 13:15:02

标签: android google-maps

我已经完成了创建一个为某个位置添加标记的android程序。 但我需要在MAP中显示CURRENT MY LOCATION。我知道这是通过基于位置的服务完成的,但我不知道如何将其纳入我的程序

这是我的onCreate命令


  public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

    //map
    mapView = (MapView) findViewById(R.id.mapView);

    //zoom
    LinearLayout zoomLayout = (LinearLayout)findViewById(R.id.zoom);  
    View zoomView = mapView.getZoomControls(); 

    zoomLayout.addView(zoomView, 
        new LinearLayout.LayoutParams(
            LayoutParams.WRAP_CONTENT, 
            LayoutParams.WRAP_CONTENT)); 
    mapView.displayZoomControls(true);

    //Philippines coordinate
    mc = mapView.getController();
    String coordinates[] = {"10.952566007", "121.78921587"};
    double lat = Double.parseDouble(coordinates[0]);
    double lng = Double.parseDouble(coordinates[1]);

    p = new GeoPoint((int) (lat * 1E6), (int) (lng * 1E6));

    mc.animateTo(p);
    mc.setZoom(6); 

    mapOverlay = new MapOverlay();
    listOfOverlays = mapView.getOverlays();
    listOfOverlays.clear();
    listOfOverlays.add(mapOverlay);  

    mapView.invalidate();
}

我有一个放置标记的onTouchEvent。那没问题, 问题是我需要在程序开始时显示我的位置。它应该显示一个标记,上面写着“你在这里”或类似的地图。

p.s:我想我需要将硬编码点更改为当前位置点,但我不知道该怎么做:|

2 个答案:

答案 0 :(得分:2)

为了获取手机的当前位置,我使用

  

LocationManager locationManager =(LocationManager)this.getSystemService(LOCATION_SERVICE);
  标准标准=新标准();   criteria.setAccuracy(Criteria.ACCURACY_COARSE);   String bestProvider = locationManager.getBestProvider(criteria,true);   位置loc = locationManager.getLastKnownLocation(bestProvider);

在AndroidManifest.xml中为这些定义使用权限         (使用其他东西的好位置)

REF。 http://code.google.com/p/android-bluetooth-on-motion/source/browse/trunk/BluetoothOnMotion/src/com/elsewhat/android/onmotion/BluetoothOnMotionService.java

在我的应用程序中,我想将一个参数传递给地图意图,以便地图显示标记,但却找不到这样做的方法。按照Rick(谁不​​是Fred)的建议创建位置叠加可能是要走的路

答案 1 :(得分:0)

Hello MapView显示了如何放置叠加层。我想您想使用the google APIS reference中记录的MyLocationOverlay类来获取您当前的位置。