Код: Выделить всё
var longitude = {{Longitude}}; // массив долгот
var latitude = {{Latitude}}; // массив широт
var namestation = {{NameStation | safe}}; // массив имен
var link = {{Link | safe}}; // массив ссылок
var pointLayer = new GraphicsLayer();
for (i = 0; i < longitude.length; i++) {
var point = {
type: "point", // autocasts as new Point()
longitude: longitude[i],
latitude: latitude[i]
};
var pointGraphic = new Graphic({
geometry: point,
symbol: markerSymbol,
popupTemplate: {
title: namestation[i],
content: [{
type: "text",
text: "<a href=link[i]>link[i]</a>" //добавляем ссылку
}]
}
});
pointLayer.add(pointGraphic)
};