rcs.forEach((residential, i) => {
setTimeout(() => {
...
//тут же для каждого маркера своя переменная должна определяться
DG.marker(this.coordinates, { icon: myDivIcon })
.addTo(this.markers)
.bindPopup(this.popupMap);
}, i * 200);
});
onZoomEnd(e, residentials) {
const { oldZoom } = this,
newZoom = this.map.getZoom();
const template =
oldZoom > this.switchOnZoom && newZoom <= this.switchOnZoom
? this.setMiniMarker
: oldZoom <= this.switchOnZoom && newZoom > this.switchOnZoom
? this.setZoomMarker
: null;
if (template) {
Object.values(this.markers._layers).forEach((marker, i) => {
marker._icon.innerHTML = template(residentials[i]);
});
}
},
this.map.on("zoomend", (e) => this.onZoomEnd(e, МАССИВ));
onZoomEnd(e, array) {
@click="handlerDevOrRc(residential.id)"
Вот тут residential - это элемент массива getFilterRc
Вопрос в том, как мне получить то эти данные - методы prev и next просто класс добавляют для визуала, а мне нужно чтобы по enter данные выбранного блока передались
residential.id