当用户在地图上添加标记时,如何访问标记?

时间:2014-08-11 04:01:17

标签: java android google-maps google-maps-api-2

当用户点击地图上的某个位置时,会打开一个对话框提醒框,提示用户是否要添加标记,如果是,则添加标记。我正在尝试编写另一种方法,如果用户传递此标记,则标记会更改颜色。

我在编写标记检查部分时遇到问题。

我的代码:

public void onMapClick(){
    map.setOnMapClickListener(new OnMapClickListener() {
        @Override
        public void onMapClick(LatLng latlng) {

            dialogBox(latlng);
        }
    });
}
private void dialogBox(final LatLng latlng) {
    AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(MapActivity.this);

    alertDialogBuilder.setTitle("Add Marker");

    alertDialogBuilder
    .setMessage("Add marker?").setCancelable(false)
    .setPositiveButton("yes", new DialogInterface.OnClickListener() {

        @Override
        public void onClick(DialogInterface dialog, int which) {

            double dialogLat = latlng.latitude;
            double dialogLng = latlng.longitude;

            dialogMarker = map.addMarker(new MarkerOptions()
        .icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_GREEN))
            .position(latlng).title("dialog maker"));

            //if location hit, places marker around that area
            hitLocation(dialogLat,dialogLng);

        }
    })
    .setNegativeButton("no", new DialogInterface.OnClickListener() {

        //cancels
        }
    }); // create alert dialog show it
}
public void hitLocation( final double dialogLat, final double dialogLng){
    LocationListener ll = new LocationListener() {

        @Override
        public void onLocationChanged(Location location) {
            // TODO Auto-generated method stub

            double lat = location.getLatitude();
            double lon = location.getLongitude();

            final LatLng currentLatLon = new LatLng(lat, lon);


            //tracks weather or not person hit the location
            if((lat > (dialogLat- 0.0001) && lat < (dialogLat+ 0.0001)) &&
            (lon > (dialogLon - 0.0001) && lon < (dialogLon + 0.0001))){
                dialogMarker = map.addMarker(new MarkerOptions().position(currentLatLon)
            }
        } // other location listener methods

它适用于我在警告对话框的onClick方法中传递hitLocation(doubleLat,doubleLng)的位置。我认为应该发生的是,当我在地图上放置一个标记时,hitLocation应该检查我是否会按照用户设置的位置进行操作。

1 个答案:

答案 0 :(得分:0)

目前还不清楚这一切是如何结合在一起的(至少对我而言)。例如,我不知道如何调用hitLocation(double,double),但我确实看到了一些问题。

首先关闭。这是拼写错误吗?

    if((lat > (dialogLat- 0.0001) && lat < (dialogLng+ 0.0001)) 
你是说

吗?
    if((lat > (dialogLat- 0.0001) && lat < (dialogLat+ 0.0001)) 

对话框** Lat ** vs dialog ** Lng **

我认为你最好通过使用类似的东西检查坐标是否接近。

Math.abs(value1 - value2) < someTolerance
纬度和经度并不总是正面的。