Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Usuń poprzedni znacznik i dodaj znacznik w zaktualizowanym lat Lng

Masz dwie opcje, obie obejmują utrzymywanie odniesienia do znacznika poza displayLocation funkcja:

  1. użyj odniesienia, aby przenieść istniejący znacznik
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. usuń istniejący znacznik z mapy i utwórz nowy
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!'
    });
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Stół obrotowy z 3 stołami

  2. Sqlalchemy, surowe zapytanie i parametry

  3. MySQL pokazuje aktualne informacje o połączeniu

  4. MySQL ORDER BY FIELD z %

  5. Najlepsze praktyki optymalizacji bazy danych MySQL