Estoy intentando hacer que el marcador en el que estoy actualmente tenga un mayor índice Z que los demás, por lo que incluso si está oculto por otros marcadores aparecerá obtener visibilidad total cuando estoy sobre él.cambiar el índice z de marcador al colocar el cursor sobre él para hacer que sea visible
Al hacer clic en cualquier marcador quiero hacer lo mismo.
google.maps.event.addListener(this.marker, 'mouseover', function() {
this.old_ZIndex = this.getZIndex(); //trying to get the current z- index
console.log(this.old_ZIndex); //this is undefined: why?
this.setZIndex(this.old_ZIndex + 100); //setting a higher z-index than all other markers
console.log("the old z index is ",this.old_ZIndex);
});
Pero con esto yo sería infinitamente aumentar el índice z .. ¿hay alguna otra manera en la que puedo tener el invertir de nuevo al desplazar o haga clic en cualquier otro marcador. .
¿O hay alguna forma mejor de implementarlo?