Proximity alerts keep being added, how to remove them by using id's?
问题 I set up my map and a proximity alert for each map marker, here I am passing the lat and long, and place name to the add proximity alert method: if(alerts==true) { addProximityAlert(l1, l2, place); } The add proximity alert method: //The following sets up proximity alerts, getting a unique id for each one private void addProximityAlert(Double latitude, Double longitude, String tit) { Intent intent = new Intent(PROX_ALERT_INTENT); intent.putExtra("name", tit); intent.putExtra("id", alertid);