在ListView项目上单击,将Google地图相机移动到指定的标记

时间:2018-05-13 05:12:29

标签: java android google-maps

我有一个Google地图活动,其中包含一个搜索框和一个列表视图(包含LatLng)。当我单击列表视图内的地址时,我希望相机移动到该地址/标记(ListView中的所有地址都被标记)。

我在自定义ListAdapter中有这个方法,我尝试更新相机,但它不起作用。这是我的代码的一部分。

public class DeliveriesListAdapter extends ArrayAdapter<Delivery> implements View.OnClickListener {
private ArrayList<Delivery> deliveries;


public DeliveriesListAdapter(ArrayList<Delivery> data, Context context) {
    super(context, R.layout.activity_row_item, data);
    this.deliveries = data;
    this.mContext = context;
}
    @Override
    public void onClick(View v) {
        // TODO: on click, move camera to selected address on map.
        int position = (Integer) v.getTag();
        Delivery delivery = (Delivery) deliveries.get(position);
        CameraUpdateFactory.newLatLng(delivery.getLatLng());
    }
}

The List at the bottom of the screen is supposed to move the camera to that marker on the map.


这是我的Data类,它包含指定列表项的LatLng。

public class Delivery {

private String address;
private double distance, time;
private LatLng latLng;
private Place place;

public Delivery(Place place) {
    address = place.getAddress().toString();
    distance = -1; 
    time = -1;
    latLng = place.getLatLng();
    this.place = place;
}

我的Google地图活动内容:

public class MapsActivity extends FragmentActivity implements OnMapReadyCallback{

private ArrayList<Delivery> deliveryList = new ArrayList<>();

// called inside onCreate(...)
  private void setUpListView() {
    deliveriesListView = findViewById(R.id.deliveries_listview);
    adapter = new DeliveriesListAdapter(addressList, this);
    deliveriesListView.setAdapter(adapter);
}

/**
 * Used to add Delivery to a list view.
 * @param delivery The Delivery containing the address to be added to the view to add the marker.
 */
private void addDeliveryToList(Delivery delivery) {
    deliveryList.add(delivery);
    adapter.notifyDataSetChanged();
}

编辑:我知道CameraUpdateFactory.newLatLng(delivery.getLatLng());错了,我之前弄乱了它并删除了原来的内容。

解决方案:我设法通过将自定义列表适配器重写为RecyclerViewAdapter来解决它,并设法将Overriden onClick方法移动到我的Maps Activity,这是我遇到的麻烦。

1 个答案:

答案 0 :(得分:1)

你还需要告诉地图移动相机。像这样mMap.moveCamera(CameraUpdateFactory.newLatLng(delivery.getLatLng()))。还有一件事,你应该更好地处理适配器中的点击。它们应该包含在主机UI部分中。您可以使用interface在主机UI部分中进行回调。您可以获得有关如何执行此操作的提示here