I have foreach
taking some data from the bank, including the address.
foreach ($roteiro->ListaRoteiro($romaneio) as $dados) {
echo $dados->getRomaneio() . " - ";
echo $dados->getPlaca() . " - ";
echo $dados->getCte() . " - ";
echo ($roteiro->FormataData($dados->getDtSaidaRomaneio())) . " - ";
echo $dados->getEndereco() . " <br> ";
}
Saida:
15317 - ITU-9637 - 12-5162 - 21/11/2016 - RUA ALVORADA-29, - VILA RUTE - GUARULHOS - SP, 7054080
15317 - ITU-9637 - 12-5251 - 21/11/2016 - RUA CABO ANTÔNIO PEREIRA DA SILVA-307, - JARDIM TRANQUILIDADE - GUARULHOS - SP, 7051011
My idea is as follows, taking these address data, I would like to post these addresses as bookmarks in google maps for easier viewing, each address a bookmark.
I'm using a JS class.
<script src="js/gmaps.js" type="text/javascript"></script>
<script src="js/markers.js" type="text/javascript"></script>
<script>
$(function () {
//Definir o centro do mapa
initMap('Endereço aqui');
//Adicionar marcadores
addMarker('Endereço aqui');
addMarker('Endereço aqui');
})
</script>
My question is: How can I get the data I get in getEndereco
and inside addMarker
?