Как показать более одного маркера на одном и том же месте
Привет
I am using GoogleMap. When I have two or more markers on the exact same spot, The API only displays 1 marker - the top one. But somehow I want to show all the markers as each one will be opening distinct popup. I have searched found few solutions but none are seem to be working Anybody had similar issue and would pls share a solution??
Что я уже пробовал:
for (var i = filtered.длина-1; i >= 0; i--) {
var item = записи[отфильтрованные[i]];
chosenRecords + = (i == фильтруется.длина-1)? пункт.Код : "," + товар.Идентификатор;
если (отфильтровано.длина <= 30000) {
var marker = новый google. maps.Маркер({
удалено: новые google. maps.Latlng с(поз.широта, поз.СПГ),
значок: значок,
название: "нажмите на меня",
карта: карта,
код: товар.Идентификатор,
infoWindowIndex: я
});
var infoWindow = новый google. maps.InfoWindow({
удалено: "abc здесь"
});
Гугл.карты.событие.метод addlistener(маркер, 'нажмите', функция (событие) {
//if (infowindows) {
// infowindows.рядом();
//}
infowindows[this. infoWindowIndex]. open(map, this);
});
infowindows. push(infoWindow);
profileMarkers. push(маркер);
}