Mysql
 sql >> Database >  >> RDS >> Mysql

Rimuovi il marker precedente e aggiungi il marker nel lat lng aggiornato

Hai due opzioni, entrambe implicano il mantenimento di un riferimento all'indicatore al di fuori di displayLocation funzione:

  1. usa il riferimento per spostare l'indicatore esistente
var marker;
function displayLocation(location) {
  console.log(location.lat)
    var position = new google.maps.LatLng(parseFloat(location.lat), parseFloat(location.lng));
    if (marker && marker.setPosition) {
      // if the marker already exists, move it (set its position)
      marker.setPosition(location);
    } else {
      // create a new marker, keeping a reference
      marker = new google.maps.Marker({
        map: map, 
        position: position,
        title: 'test!'
      });
    }
}
  1. Rimuovi l'indicatore esistente dalla mappa e creane uno nuovo
var marker;
function displayLocation(location) {
  console.log(location.lat)
    var position = new google.maps.LatLng(parseFloat(location.lat), parseFloat(location.lng));
    if (marker && marker.setMap) {
      // if the marker already exists, remove it from the map
      marker.setMap(null);
    }
    // create a new marker, keeping a reference
    marker = new google.maps.Marker({
      map: map, 
      position: position,
      title: 'test!'
    });
}