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>
_______________________________________________ QGIS-it-user mailing list QGIS-it-user@lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/qgis-it-user