The idea is that this is not working when I add the value of the php variable directly in the javascript, for example -3,3462, -60,6790
it works, do you know what it could be?
<?php
$variavel = "-3,3462, -60,6790";
?>
<script>
var testMarker = L.marker([<?php $variavel;?>],{icon: orangeIcon});
</script>