当在标记周围50米半径时,触发方法

时间:2012-03-17 17:35:11

标签: java android osmdroid

我需要做的是,"用户"标记进入(让半径为50米)其中一个感兴趣的标记popus一个对话框(showplaceDialog())的半径。

我该怎么办?我根本不知道该怎么做......

这就是我把"用户"标记,随着位置的变化而移动。

@Override
public void onLocationChanged(Location location) {
    Log.d("Location", "onLocationChanged with location " + location.toString());

    if(overlayMarkerYou == null) {
        overlayMarkerYou = new MyOverlay(getResources().getDrawable(R.drawable.marker_you),mapView);
        mapView.getOverlays().add(overlayMarkerYou);
    }else{
        mapView.getOverlays().remove(overlayMarkerYou);
        mapView.invalidate();
        overlayMarkerYou = new MyOverlay(getResources().getDrawable(R.drawable.marker_you),mapView);
        mapView.getOverlays().add(overlayMarkerYou);
    }

    if (location != null) {

        mapView.invalidate();
        GeoPoint gpt = new GeoPoint(microdegrees(location.getLatitude()),microdegrees(location.getLongitude()));
        mapController.setCenter(gpt);
        overlayMarkerYou.addPoint(gpt, getString(R.string.markerYou), getString(R.string.markerYouDescription));

    }

}

这就是我为感兴趣的地方放置多个标记的方法

public void putPlacesOfInterest(){
    this.dh = new DataHelper(ShowMap.this);
    List<Pontos> list = this.dh.selectAll();
    for(Pontos p : list){
        markerPlaces.add(new OverlayItem(p.getName().toString(), Long.toString(p.getId()), new GeoPoint(p.getLat(), p.getLng())));
    }
    mMyLocationOverlay = new ItemizedIconOverlay<OverlayItem>(markerPlaces, new OnItemGestureListener<OverlayItem>() {

        @Override
        public boolean onItemLongPress(int index, OverlayItem item) {
            Toast.makeText(ShowMap.this, "" + item.mTitle, Toast.LENGTH_SHORT).show();
            return true;
        }

        @Override
        public boolean onItemSingleTapUp(int index, OverlayItem item) {
            showplaceDialog(Integer.parseInt(item.mDescription),item.mTitle);
            return true;
        }

    }, mResourceProxy);

    mapView.getOverlays().add(mMyLocationOverlay);
    mapView.invalidate();
}

1 个答案:

答案 0 :(得分:1)

我建议查看LocationManager类中可用的addProximityAlert()函数。我不确定你能注册多少听众。

您的另一个选择是检查每个位置更新。当您的应用获得onLocationChanged()回调后,您可以循环浏览您感兴趣的地点,并检查它们是否位于当前位置的50米范围内。为了使这更容易,您可以使用Location类中的distanceTo()方法。