Возможно ли создать цикл для создания Marker
с помощью mapboxgl
buildMap() {
console.log(this.lng, this.lat);
this.map = new mapboxgl.Map({
container: 'map',
style: this.style,
zoom: 16,
center: [this.lng, this.lat]
});
var elCreature = document.createElement('div');
elCreature.className = 'icon-creature alpaca';
elCreature.addEventListener('click', (e:Event) => this.showToastWithCloseButton());
var markerCreature = new mapboxgl.Marker(elCreature, {offset: [-20, -20]})
.setLngLat([this.lng, this.lat])
.addTo(this.map);
}
Работа для одного маркера.Я пытаюсь for loop
, но ничего не отображается