Bạn có hai tùy chọn, cả hai đều liên quan đến việc giữ một tham chiếu đến điểm đánh dấu bên ngoài displayLocation
chức năng:
- sử dụng tham chiếu để di chuyển điểm đánh dấu hiện có
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!'
});
}
}
- xóa điểm đánh dấu hiện có khỏi bản đồ và tạo một điểm đánh dấu mới
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!'
});
}