Alexandre as alterações mais continua o programa não encontrando as variaveis $lat e $lnt, não tenho ideia.
erros:
Atenção
Undefined variable: lat
Atenção
Undefined variable: lnt
codigo:
$map = '{'.'z}/'.'{'.'x}/'.'{'.'y}';
$sql = "SELECT Latitude, Longitude, paciente_id, agente_id, nome FROM pacientes";
sc_select(dataset, $sql);
if ({dataset} === false) {
sc_error_message("Orocrreu um erro no acesso ao<BR>Banco de Dados: {dataset_erro}.<BR>");
}
echo <<<HTML
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
<title>Sap Informática - Mapa Rio grande do Norte</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
<style type="text/css">
#map {
height: 100%;
}
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map">
<script>
const key = 'YOUR_MAPTILER_API_KEY_HERE';
const map = L.map('map').setView([-5.812, -35.25], 13); //starting position
L.tileLayer('https://tile.openstreetmap.org/$map.png',{ //style URL
// tileSize: 512,
// zoomOffset: -1,
// minZoom: 1,
maxZoom: 30,
}).addTo(map);
<?php
if ($dataset->EOF) {
// sc_error_message("Nenhum Resultado encontrado pelo Banco.<BR>");
} else {
while (!$dataset->EOF)
{
$lat = $dataset->fields[0];
$lnt = $dataset->fields[1];
?>
var marker = L.marker([$lat, $lnt]).addTo(map);
<?php
$dataset->MoveNext();
}
}
$dataset->Close();
?>
var marker = L.marker([$lat, $lnt]).addTo(map);
</script>
</body>
</html>
HTML;