[QGIS-it-user] Popup suggerimenti mappa html - qgis+lizmap 3.5
Roberto Brazzelli
geom.brazzelli a gmail.com
Ven 24 Mar 2023 04:03:41 PDT
Ciao a tutti,
nei suggerimenti mappa di Qgis è possibile inserire anche codice js? sto
facendo prove per visualizzare nel popup di lizmap un csv con la seguente
funzione, ma per ora non ho risultati...
Qualche aiuto...grazie
Roberto
<!DOCTYPE html>
<html>
<head>
<title>Visualizzazione CSV in HTML</title>
<script>
function caricaCSV() {
var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://myurl/file.csv', true);
xhr.onload = function() {
if (xhr.status === 200) {
var righe = xhr.responseText.split('\n');
var tabella = document.createElement('table');
for (var i = 0; i < righe.length; i++) {
var celle = righe[i].split(',');
var riga = document.createElement('tr');
for (var j = 0; j < celle.length; j++) {
var cella = document.createElement('td');
cella.appendChild(document.createTextNode(celle[j]));
riga.appendChild(cella);
}
tabella.appendChild(riga);
}
document.getElementById('contenuto').appendChild(tabella);
}
};
xhr.send();
}
</script>
</head>
<body onload="caricaCSV()">
<h1>Contenuto CSV</h1>
<p>Il seguente contenuto CSV è stato pubblicato dalla risposta alla
richiesta HTTP GET:</p>
<div id="contenuto"></div>
</body>
</html>
-------------- parte successiva --------------
Un allegato HTML è stato rimosso...
URL: <http://lists.osgeo.org/pipermail/qgis-it-user/attachments/20230324/8825b6fe/attachment.htm>
Maggiori informazioni sulla lista
QGIS-it-user