Я пытаюсь добавить граф d3.js во всплывающее окно листовки. Я посмотрел на этот ответ , и он, кажется, идет в правильном направлении, но по какой-то причине я получаю [object HTMLDivElement]
вместо фактического содержимого div
. Есть идеи?
Вот мой код для всплывающего окна (сейчас я только пытаюсь добавить круг):
function showPopup(latlng, name, comuna, estrato1, estrato2, estrato3, estrato4, estrato5, estrato6) {
var div = $('<div style="width: 200px; height: 200px;"></svg></div>')[0];
var svg = d3.select(div).select("svg")
.attr("width", 200)
.attr("height", 200);
svg.append("circle")
.style("stroke", "gray")
.style("fill", "white")
.attr("r", 100)
.attr("cx", 100)
.attr("cy", 100);
popup
.setLatLng(latlng)
.setContent('<b>' + name.toUpperCase() + '</b><p>' + comuna.toUpperCase() + '</p><p class="estratos">Estrato 1: ' + Math.round(estrato1 * 100) + '%<br>Estrato 2: ' + Math.round(estrato2 * 100) +'%<br>Estrato 3: ' + Math.round(estrato3 * 100) +'%<br>Estrato 4: ' + Math.round(estrato4 * 100) +'%<br>Estrato 5: ' + Math.round(estrato5 * 100) +'%<br>Estrato 6: ' + Math.round(estrato6 * 100) +'%</p>' + div)
.openOn(mymap);
}