Jump to content
Fivewin Brasil

Posicionamento pelo google maps


marcioe

Recommended Posts

Amigos

Será que algum amigo pode postar algum source onde tenha a possibilidade de posicionamento pelo google maps.

Tipo assim

O nosso veiculo foi para o cliente XXXX da cidade yyyy, rua aaaa, 1111 etc

Porem queria posicionar mais de um por vez.

Dai eu exibir um mapa com a posição dele no mapa.

Agradeço a todos.

Algo parecido com isso abaixo

inhf.jpg

ou assim seria melhor

y81m.png

Link to comment
Share on other sites

Bom dia! tem este código que utilizo, porem por algum motivo ele não funciona para mais de 10 locais, de uma olhada se ajuda qualquer coisa me avise.

<head>
<title>Mapa Rota:coloque o titulo </title>
<style type="text/css">
#mapa{width:1200px;
height:1000px}
</style>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript">
var map = null;
function carregar(){
var latlng = new google.maps.LatLng(-22.9874,-49.8659);
var myOptions = {
zoom: 14,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP};
map = new google.maps.Map(document.getElementById("mapa"), myOptions);
var endereco1="R. VEREADOR FELISMINO VIEIRA, 20, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco1}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio1 = new google.maps.Marker({position: latlng,map: map, title:"JOAO APARECIDO FRAZATO - TESTE", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JOAO APARECIDO FRAZATO - TESTE</strong><br>R. VEREADOR FELISMINO VIEIRA, 20, JD. SANTA FE IV<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio1, "click", function(event) { infowindow.open(map,markerInicio1);});
map.setCenter(latlng); } });
var endereco2="AV. GASTAO VIDIGAL, 725, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco2}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio2 = new google.maps.Marker({position: latlng,map: map, title:"CARLOS ALBERTO PASTRELO- ME MICROMEC", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>CARLOS ALBERTO PASTRELO- ME MICROMEC</strong><br>AV. GASTAO VIDIGAL, 725, JD. MATILDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio2, "click", function(event) { infowindow.open(map,markerInicio2);});
map.setCenter(latlng); } });
var endereco3="R: MARIO ANTONIO BACILLI, 111, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco3}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio3 = new google.maps.Marker({position: latlng,map: map, title:"ELISANGELA F.M. CUNHA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ELISANGELA F.M. CUNHA</strong><br>R: MARIO ANTONIO BACILLI, 111, VL OPERARIA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio3, "click", function(event) { infowindow.open(map,markerInicio3);});
map.setCenter(latlng); } });
var endereco4="R. SILVA JARDIM, 3534708 OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco4}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio4 = new google.maps.Marker({position: latlng,map: map, title:"ENDOSON CENTRO ENDOSCOPIA LTDA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ENDOSON CENTRO ENDOSCOPIA LTDA</strong><br>R. SILVA JARDIM, 3534708 3534708 VL MORAES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio4, "click", function(event) { infowindow.open(map,markerInicio4);});
map.setCenter(latlng); } });
var endereco5="R MARIA PACHECO CHAVES 633, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco5}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio5 = new google.maps.Marker({position: latlng,map: map, title:"LUIZ ANTONIO BUZINHANE", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>LUIZ ANTONIO BUZINHANE</strong><br>R MARIA PACHECO CHAVES 633, 0, PACHECO CHAVES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio5, "click", function(event) { infowindow.open(map,markerInicio5);});
map.setCenter(latlng); } });
var endereco6="AV ALTINO ARANTES 1078, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco6}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio6 = new google.maps.Marker({position: latlng,map: map, title:"RICARDO KATSUMI YAMAJI- ME", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>RICARDO KATSUMI YAMAJI- ME</strong><br>AV ALTINO ARANTES 1078, CENTRO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio6, "click", function(event) { infowindow.open(map,markerInicio6);});
map.setCenter(latlng); } });
var endereco7="RUA DR MARIO CINTRA LEITE 270, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco7}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio7 = new google.maps.Marker({position: latlng,map: map, title:"ADEMIR PEREIRA DE ANDRADE", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ADEMIR PEREIRA DE ANDRADE</strong><br>RUA DR MARIO CINTRA LEITE 270, 0, JD ELDORADO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio7, "click", function(event) { infowindow.open(map,markerInicio7);});
map.setCenter(latlng); } });
var endereco8="RUA PAULO DUZI, 1012, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco8}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio8 = new google.maps.Marker({position: latlng,map: map, title:"ANGELA MARIA DE OLIVEIRA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ANGELA MARIA DE OLIVEIRA</strong><br>RUA PAULO DUZI, 1012, JD GUAPORE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio8, "click", function(event) { infowindow.open(map,markerInicio8);});
map.setCenter(latlng); } });
var endereco9="R. CLORIVALDO MIGLIARI, 133, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco9}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio9 = new google.maps.Marker({position: latlng,map: map, title:"ANISIO DONIZETI DE BASTIANI", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ANISIO DONIZETI DE BASTIANI</strong><br>R. CLORIVALDO MIGLIARI, 133, N.OURINHOS<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio9, "click", function(event) { infowindow.open(map,markerInicio9);});
map.setCenter(latlng); } });
var endereco10="R. DOUTOR ARLINDO VIVEIRO FIGUEIREDO, 65, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco10}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio10 = new google.maps.Marker({position: latlng,map: map, title:"APARECIDA MARIA MIRANDA DE SOUZA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>APARECIDA MARIA MIRANDA DE SOUZA</strong><br>R. DOUTOR ARLINDO VIVEIRO FIGUEIREDO, 65, JD.MATILDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio10, "click", function(event) { infowindow.open(map,markerInicio10);});
map.setCenter(latlng); } });
var endereco11="R. PASCHOAL PAGANI, 665, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco11}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio11 = new google.maps.Marker({position: latlng,map: map, title:"CLAUDINEI EVANGELISTA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>CLAUDINEI EVANGELISTA</strong><br>R. PASCHOAL PAGANI, 665, JD.EUROPA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio11, "click", function(event) { infowindow.open(map,markerInicio11);});
map.setCenter(latlng); } });
var endereco12="R VICENTE ERNESTO DE LUCCA 372, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco12}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio12 = new google.maps.Marker({position: latlng,map: map, title:"DORCAS NOGUERIA CANDIDO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>DORCAS NOGUERIA CANDIDO</strong><br>R VICENTE ERNESTO DE LUCCA 372, 0, JD ANCHIETA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio12, "click", function(event) { infowindow.open(map,markerInicio12);});
map.setCenter(latlng); } });
var endereco13="RUA JORGE TIBIRICA, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco13}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio13 = new google.maps.Marker({position: latlng,map: map, title:"DORLY MARCHESANY", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>DORLY MARCHESANY</strong><br>RUA JORGE TIBIRICA, VL MARAGRIDA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio13, "click", function(event) { infowindow.open(map,markerInicio13);});
map.setCenter(latlng); } });
var endereco14="R ANTONIO GUILHERME DA SILVA, 106, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco14}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio14 = new google.maps.Marker({position: latlng,map: map, title:"ELENICE CARRER", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ELENICE CARRER</strong><br>R ANTONIO GUILHERME DA SILVA, 106, VL S JOSE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio14, "click", function(event) { infowindow.open(map,markerInicio14);});
map.setCenter(latlng); } });
var endereco15="R JOSE GERALDO BELTRANI NUM 4, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco15}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio15 = new google.maps.Marker({position: latlng,map: map, title:"ELIANA OBATA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ELIANA OBATA</strong><br>R JOSE GERALDO BELTRANI NUM 4, 0, JD ESTORIL<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio15, "click", function(event) { infowindow.open(map,markerInicio15);});
map.setCenter(latlng); } });
var endereco16="R SETE DE SETEMBRO 530, 530, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco16}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio16 = new google.maps.Marker({position: latlng,map: map, title:"IVONE APARECIDA S BORGES", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>IVONE APARECIDA S BORGES</strong><br>R SETE DE SETEMBRO 530, 530, VL MARGARIDA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio16, "click", function(event) { infowindow.open(map,markerInicio16);});
map.setCenter(latlng); } });
var endereco17="AV ALTINO ARANTES 1020 AP 111, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco17}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio17 = new google.maps.Marker({position: latlng,map: map, title:"JOAO MONTEIRO PEREIRA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JOAO MONTEIRO PEREIRA</strong><br>AV ALTINO ARANTES 1020 AP 111, 0, CENTRO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio17, "click", function(event) { infowindow.open(map,markerInicio17);});
map.setCenter(latlng); } });
var endereco18="R. ARI BARROSO, 450, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco18}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio18 = new google.maps.Marker({position: latlng,map: map, title:"JOSE AUGUSTO DA S NETO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JOSE AUGUSTO DA S NETO</strong><br>R. ARI BARROSO, 450, V.MORAES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio18, "click", function(event) { infowindow.open(map,markerInicio18);});
map.setCenter(latlng); } });
var endereco19="RUA QUINZE DE NOVEMBRO 194, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco19}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio19 = new google.maps.Marker({position: latlng,map: map, title:"JOSENITA F DA S GUICHO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JOSENITA F DA S GUICHO</strong><br>RUA QUINZE DE NOVEMBRO 194, 0, VL MARGARIDA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio19, "click", function(event) { infowindow.open(map,markerInicio19);});
map.setCenter(latlng); } });
var endereco20="R. ARTURO CASSIOLATO, 346, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco20}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio20 = new google.maps.Marker({position: latlng,map: map, title:"LEONICE DE BASTIANI", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>LEONICE DE BASTIANI</strong><br>R. ARTURO CASSIOLATO, 346, JD.MATILDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio20, "click", function(event) { infowindow.open(map,markerInicio20);});
map.setCenter(latlng); } });
var endereco21="R. JOSE DE PAULA VIEIRA, 322, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco21}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio21 = new google.maps.Marker({position: latlng,map: map, title:"LILIAN MAFRA VIDAL HIDAKA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>LILIAN MAFRA VIDAL HIDAKA</strong><br>R. JOSE DE PAULA VIEIRA, 322, JD S.SILVESTRE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio21, "click", function(event) { infowindow.open(map,markerInicio21);});
map.setCenter(latlng); } });
var endereco22="PRACA DR. HERMELINO AGNES DE LEAO 719, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco22}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio22 = new google.maps.Marker({position: latlng,map: map, title:"ASSOPRAMI - ASSOC PROT MATERN E INFANCIA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ASSOPRAMI - ASSOC PROT MATERN E INFANCIA</strong><br>PRACA DR. HERMELINO AGNES DE LEAO 719, VILA MORAES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio22, "click", function(event) { infowindow.open(map,markerInicio22);});
map.setCenter(latlng); } });
var endereco23="R. JOAO VILLAR PERES, 620, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco23}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio23 = new google.maps.Marker({position: latlng,map: map, title:"LUCIMARA RIBEIRO FONTEQUE", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>LUCIMARA RIBEIRO FONTEQUE</strong><br>R. JOAO VILLAR PERES, 620, JD.ESTORIL<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio23, "click", function(event) { infowindow.open(map,markerInicio23);});
map.setCenter(latlng); } });
var endereco24="RUA REINALDO AZEVEDO, 395, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco24}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio24 = new google.maps.Marker({position: latlng,map: map, title:"LUISA HELENA DO PRADO MENDES", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>LUISA HELENA DO PRADO MENDES</strong><br>RUA REINALDO AZEVEDO, 395, JD PAULISTA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio24, "click", function(event) { infowindow.open(map,markerInicio24);});
map.setCenter(latlng); } });
var endereco25="R ANTONIO ZAKI ABUCHAM 596, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco25}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio25 = new google.maps.Marker({position: latlng,map: map, title:"MARIA AUREA DA SILVA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>MARIA AUREA DA SILVA</strong><br>R ANTONIO ZAKI ABUCHAM 596, 0, JD O FINO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio25, "click", function(event) { infowindow.open(map,markerInicio25);});
map.setCenter(latlng); } });
var endereco26="RUA SILVA JARDIM 944, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco26}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio26 = new google.maps.Marker({position: latlng,map: map, title:"MARIA DE FATIMA RIBEIRO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>MARIA DE FATIMA RIBEIRO</strong><br>RUA SILVA JARDIM 944, 0, VILA MORAES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio26, "click", function(event) { infowindow.open(map,markerInicio26);});
map.setCenter(latlng); } });
var endereco27="RUA RICARDO OTERO, 1214, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco27}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio27 = new google.maps.Marker({position: latlng,map: map, title:"MARIA DE JESUS TREGUES DINIZ", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>MARIA DE JESUS TREGUES DINIZ</strong><br>RUA RICARDO OTERO, 1214, JD SÃO SILVESTR<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio27, "click", function(event) { infowindow.open(map,markerInicio27);});
map.setCenter(latlng); } });
var endereco28="R FRANCISCO ROBLES GODOY, 61, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco28}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio28 = new google.maps.Marker({position: latlng,map: map, title:"MARILDA C O RODRIGUES", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>MARILDA C O RODRIGUES</strong><br>R FRANCISCO ROBLES GODOY, 61, JD OURO VERDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio28, "click", function(event) { infowindow.open(map,markerInicio28);});
map.setCenter(latlng); } });
var endereco29="R ELIAS GARDIM 147, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco29}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio29 = new google.maps.Marker({position: latlng,map: map, title:"MARISA SANTOS BACHIEGA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>MARISA SANTOS BACHIEGA</strong><br>R ELIAS GARDIM 147, 0, JD NAZARETHI<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio29, "click", function(event) { infowindow.open(map,markerInicio29);});
map.setCenter(latlng); } });
var endereco30="R ORLANDO MIGLIARI 111, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco30}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio30 = new google.maps.Marker({position: latlng,map: map, title:"NELSON A FERRAZOLI SILVA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>NELSON A FERRAZOLI SILVA</strong><br>R ORLANDO MIGLIARI 111, 0, JD O VERDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio30, "click", function(event) { infowindow.open(map,markerInicio30);});
map.setCenter(latlng); } });
var endereco31="R JOSE JUSTINO DE CARVALHO, 740, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco31}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio31 = new google.maps.Marker({position: latlng,map: map, title:"ODILIA NUNES FARIA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ODILIA NUNES FARIA</strong><br>R JOSE JUSTINO DE CARVALHO, 740, JD MATILDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio31, "click", function(event) { infowindow.open(map,markerInicio31);});
map.setCenter(latlng); } });
var endereco32="ALAMEDA PAITI ITO, 135, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco32}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio32 = new google.maps.Marker({position: latlng,map: map, title:"ROBINSON DOS SANTOS MULFORD", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ROBINSON DOS SANTOS MULFORD</strong><br>ALAMEDA PAITI ITO, 135, JD SANTA FÉ I<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio32, "click", function(event) { infowindow.open(map,markerInicio32);});
map.setCenter(latlng); } });
var endereco33="R OILIVIO MINUCCI 638, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco33}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio33 = new google.maps.Marker({position: latlng,map: map, title:"ROQUE CORREA FILHO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ROQUE CORREA FILHO</strong><br>R OILIVIO MINUCCI 638, 0, JD AMERICA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio33, "click", function(event) { infowindow.open(map,markerInicio33);});
map.setCenter(latlng); } });
var endereco34="AV HENRIQUE MIGLIARI 1005, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco34}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio34 = new google.maps.Marker({position: latlng,map: map, title:"SONIA REGINA B DE OLIVEIRA FERRONE", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>SONIA REGINA B DE OLIVEIRA FERRONE</strong><br>AV HENRIQUE MIGLIARI 1005, 0, VL B ESPERANCA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio34, "click", function(event) { infowindow.open(map,markerInicio34);});
map.setCenter(latlng); } });
var endereco35="RUA IPAUSSU 200, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco35}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio35 = new google.maps.Marker({position: latlng,map: map, title:"VALQUIRIA DA VILA S. ROMANI", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>VALQUIRIA DA VILA S. ROMANI</strong><br>RUA IPAUSSU 200, MATILDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio35, "click", function(event) { infowindow.open(map,markerInicio35);});
map.setCenter(latlng); } });
var endereco36="ANTONIO ZAQUE ABUCHAN, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco36}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio36 = new google.maps.Marker({position: latlng,map: map, title:"VILMA APARECEIDA DIAS LAVACHIS", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>VILMA APARECEIDA DIAS LAVACHIS</strong><br>ANTONIO ZAQUE ABUCHAN, VL ADALZISA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio36, "click", function(event) { infowindow.open(map,markerInicio36);});
map.setCenter(latlng); } });
var endereco37="XX, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco37}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio37 = new google.maps.Marker({position: latlng,map: map, title:"ESC. CENTRAL DE ARRE. E DISTR.- ECAD", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ESC. CENTRAL DE ARRE. E DISTR.- ECAD</strong><br>XX, XX<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio37, "click", function(event) { infowindow.open(map,markerInicio37);});
map.setCenter(latlng); } });
var endereco38="RUA: MAURICIO BIONDO NETO 613, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco38}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio38 = new google.maps.Marker({position: latlng,map: map, title:"SERGIO TOALHARES", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>SERGIO TOALHARES</strong><br>RUA: MAURICIO BIONDO NETO 613, 0, COHAB<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio38, "click", function(event) { infowindow.open(map,markerInicio38);});
map.setCenter(latlng); } });
var endereco39="RUA JACAREZINHO 58, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco39}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio39 = new google.maps.Marker({position: latlng,map: map, title:"LIGIA MARIA DE CASTRO CESAR", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>LIGIA MARIA DE CASTRO CESAR</strong><br>RUA JACAREZINHO 58, 0, JD MATILDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio39, "click", function(event) { infowindow.open(map,markerInicio39);});
map.setCenter(latlng); } });
var endereco40="R FERNANDO NATALE 129, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco40}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio40 = new google.maps.Marker({position: latlng,map: map, title:"JOSE NILTON ALVES", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JOSE NILTON ALVES</strong><br>R FERNANDO NATALE 129, 0, JD STOS DUMONT<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio40, "click", function(event) { infowindow.open(map,markerInicio40);});
map.setCenter(latlng); } });
var endereco41="R PARANA, 276, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco41}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio41 = new google.maps.Marker({position: latlng,map: map, title:"JULIANA HELENA FARIA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JULIANA HELENA FARIA</strong><br>R PARANA, 276, CENTRO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio41, "click", function(event) { infowindow.open(map,markerInicio41);});
map.setCenter(latlng); } });
var endereco42="AL MANOEL ANGELO MINUCI, 151, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco42}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio42 = new google.maps.Marker({position: latlng,map: map, title:"BENEDITO DOS SANTOS DA SILVA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>BENEDITO DOS SANTOS DA SILVA</strong><br>AL MANOEL ANGELO MINUCI, 151, JD GABRIELA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio42, "click", function(event) { infowindow.open(map,markerInicio42);});
map.setCenter(latlng); } });
var endereco43="R ROQUE DE CARVALHO 224, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco43}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio43 = new google.maps.Marker({position: latlng,map: map, title:"JAISE ELAINE BATISTA VILA REAL", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JAISE ELAINE BATISTA VILA REAL</strong><br>R ROQUE DE CARVALHO 224, 0, JD ITAMARATY<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio43, "click", function(event) { infowindow.open(map,markerInicio43);});
map.setCenter(latlng); } });
var endereco44="R. HERMINIA BONETTI SANDANO, 115, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco44}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio44 = new google.maps.Marker({position: latlng,map: map, title:"HELENA MARIA NEVES JORGE", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>HELENA MARIA NEVES JORGE</strong><br>R. HERMINIA BONETTI SANDANO, 115, V.SANDANO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio44, "click", function(event) { infowindow.open(map,markerInicio44);});
map.setCenter(latlng); } });
var endereco45="R EMILIA TERCARIOL TOCALINO 155, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco45}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio45 = new google.maps.Marker({position: latlng,map: map, title:"GERSON ROLIN PORENZA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>GERSON ROLIN PORENZA</strong><br>R EMILIA TERCARIOL TOCALINO 155, 0, PRQ M GERAIS<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio45, "click", function(event) { infowindow.open(map,markerInicio45);});
map.setCenter(latlng); } });
var endereco46="R JOAO ANTONIO SMANIA, 11, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco46}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio46 = new google.maps.Marker({position: latlng,map: map, title:"SANDRA CRISTINA DE ABREU COSTA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>SANDRA CRISTINA DE ABREU COSTA</strong><br>R JOAO ANTONIO SMANIA, 11, JD BRILHANTE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio46, "click", function(event) { infowindow.open(map,markerInicio46);});
map.setCenter(latlng); } });
var endereco47="RUA EUCLIDES DA CUNHA 231, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco47}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio47 = new google.maps.Marker({position: latlng,map: map, title:"MARCELO ABUHAMAD ME", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>MARCELO ABUHAMAD ME</strong><br>RUA EUCLIDES DA CUNHA 231, CENTRO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio47, "click", function(event) { infowindow.open(map,markerInicio47);});
map.setCenter(latlng); } });
var endereco48="R ONOFRE ALVES MOREIRA 130, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco48}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio48 = new google.maps.Marker({position: latlng,map: map, title:"EDILSON BERNARDINHO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>EDILSON BERNARDINHO</strong><br>R ONOFRE ALVES MOREIRA 130, 0, PRQ P CHAVES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio48, "click", function(event) { infowindow.open(map,markerInicio48);});
map.setCenter(latlng); } });
var endereco49="R RAFAEL CASSETARI 94, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco49}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio49 = new google.maps.Marker({position: latlng,map: map, title:"OSWALDO FRANCISCO DE FREITAS", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>OSWALDO FRANCISCO DE FREITAS</strong><br>R RAFAEL CASSETARI 94, 0, VL SANDANO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio49, "click", function(event) { infowindow.open(map,markerInicio49);});
map.setCenter(latlng); } });
var endereco50="R. ALVARO FERREIRA DE MORAES, 46, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco50}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio50 = new google.maps.Marker({position: latlng,map: map, title:"ALCIDES GILBERTO MORAES", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ALCIDES GILBERTO MORAES</strong><br>R. ALVARO FERREIRA DE MORAES, 46, V.MORAES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio50, "click", function(event) { infowindow.open(map,markerInicio50);});
map.setCenter(latlng); } });
var endereco51="RUA 13 DE MAIO 300, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco51}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio51 = new google.maps.Marker({position: latlng,map: map, title:"ASSO. DE PAIS E AMIGOS DO BAILADO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ASSO. DE PAIS E AMIGOS DO BAILADO</strong><br>RUA 13 DE MAIO 300, VILA PERINO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio51, "click", function(event) { infowindow.open(map,markerInicio51);});
map.setCenter(latlng); } });
var endereco52="DISTRITO INDUSTRIAL S/N, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco52}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio52 = new google.maps.Marker({position: latlng,map: map, title:"BUNGE ALIMENTOS S.A", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>BUNGE ALIMENTOS S.A</strong><br>DISTRITO INDUSTRIAL S/N, D.IND.DR.HELIO SILVA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio52, "click", function(event) { infowindow.open(map,markerInicio52);});
map.setCenter(latlng); } });
var endereco53="R SILVA JARDIM, 3534708 OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco53}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio53 = new google.maps.Marker({position: latlng,map: map, title:"DALTON OLIVEIRA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>DALTON OLIVEIRA</strong><br>R SILVA JARDIM, 3534708 3534708 VL EMILIA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio53, "click", function(event) { infowindow.open(map,markerInicio53);});
map.setCenter(latlng); } });
var endereco54="R.9 DE JULHO, 528, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco54}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio54 = new google.maps.Marker({position: latlng,map: map, title:"DIRETORIA DE ENSINO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>DIRETORIA DE ENSINO</strong><br>R.9 DE JULHO, 528, CENTRO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio54, "click", function(event) { infowindow.open(map,markerInicio54);});
map.setCenter(latlng); } });
var endereco55="R. DOM PEDRO I, 643, 3534708 OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco55}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio55 = new google.maps.Marker({position: latlng,map: map, title:"EDER CARVALHO SOUZA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>EDER CARVALHO SOUZA</strong><br>R. DOM PEDRO I, 643, 3534708 3534708 V.MORAES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio55, "click", function(event) { infowindow.open(map,markerInicio55);});
map.setCenter(latlng); } });
var endereco56="R GRACIANO RACANELO, 197, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco56}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio56 = new google.maps.Marker({position: latlng,map: map, title:"FERNANDO CELSO BESSA DE OLIVEIRA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>FERNANDO CELSO BESSA DE OLIVEIRA</strong><br>R GRACIANO RACANELO, 197, JD TROPICAL<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio56, "click", function(event) { infowindow.open(map,markerInicio56);});
map.setCenter(latlng); } });
var endereco57="R. GOVERNADOR ARMANDO SALES, 295, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco57}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio57 = new google.maps.Marker({position: latlng,map: map, title:"FERNANDO ARTURO DIEZ PEREZ LUMIE", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>FERNANDO ARTURO DIEZ PEREZ LUMIE</strong><br>R. GOVERNADOR ARMANDO SALES, 295, V.MORAES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio57, "click", function(event) { infowindow.open(map,markerInicio57);});
map.setCenter(latlng); } });
var endereco58="AV. ANTONIO ALMEIDA LEITE, 170, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco58}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio58 = new google.maps.Marker({position: latlng,map: map, title:"JAIR BERNADILLI", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JAIR BERNADILLI</strong><br>AV. ANTONIO ALMEIDA LEITE, 170, JD.PAUL.<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio58, "click", function(event) { infowindow.open(map,markerInicio58);});
map.setCenter(latlng); } });
var endereco59="R PARANA 830 BL A AP22, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco59}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio59 = new google.maps.Marker({position: latlng,map: map, title:"JOSE NUNES FARIA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JOSE NUNES FARIA</strong><br>R PARANA 830 BL A AP22, 0, CENTRO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio59, "click", function(event) { infowindow.open(map,markerInicio59);});
map.setCenter(latlng); } });
var endereco60="R. ALVARO FERREIRA DE MORAES, 16, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco60}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio60 = new google.maps.Marker({position: latlng,map: map, title:"LUIS TEIXEIRA CABRAL", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>LUIS TEIXEIRA CABRAL</strong><br>R. ALVARO FERREIRA DE MORAES, 16, V.MORAES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio60, "click", function(event) { infowindow.open(map,markerInicio60);});
map.setCenter(latlng); } });
var endereco61="R. SALIM ABUHAMAD 530, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco61}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio61 = new google.maps.Marker({position: latlng,map: map, title:"MIRIAM BUENO CORREA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>MIRIAM BUENO CORREA</strong><br>R. SALIM ABUHAMAD 530, 0, JD.OURO VERDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio61, "click", function(event) { infowindow.open(map,markerInicio61);});
map.setCenter(latlng); } });
var endereco62="R. ALVARO FERREIRA DE MORAES, 183, 3534708 OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco62}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio62 = new google.maps.Marker({position: latlng,map: map, title:"MARCIO NACIF", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>MARCIO NACIF</strong><br>R. ALVARO FERREIRA DE MORAES, 183, 3534708 3534708 V.MORAES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio62, "click", function(event) { infowindow.open(map,markerInicio62);});
map.setCenter(latlng); } });
var endereco63="R. GOVERNADOR ARMANDO SALES, 429, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco63}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio63 = new google.maps.Marker({position: latlng,map: map, title:"NEY TOMATSU ANABUKI", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>NEY TOMATSU ANABUKI</strong><br>R. GOVERNADOR ARMANDO SALES, 429, V.MORAES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio63, "click", function(event) { infowindow.open(map,markerInicio63);});
map.setCenter(latlng); } });
var endereco64="R. EUCLIDES DA CUNHA, 1111, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco64}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio64 = new google.maps.Marker({position: latlng,map: map, title:"PAULO ROBERTO DE ALCANTARA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>PAULO ROBERTO DE ALCANTARA</strong><br>R. EUCLIDES DA CUNHA, 1111, JD.MATILDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio64, "click", function(event) { infowindow.open(map,markerInicio64);});
map.setCenter(latlng); } });
var endereco65="R. EUCLIDES DA CUNHA, 1147, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco65}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio65 = new google.maps.Marker({position: latlng,map: map, title:"RENASCENDO RESIDENCIA IDOSOS LTDA ME", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>RENASCENDO RESIDENCIA IDOSOS LTDA ME</strong><br>R. EUCLIDES DA CUNHA, 1147, VL. MORAES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio65, "click", function(event) { infowindow.open(map,markerInicio65);});
map.setCenter(latlng); } });
var endereco66="R. ANGELO SILVA, 537, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco66}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio66 = new google.maps.Marker({position: latlng,map: map, title:"SEBASTIAO BRAS GUERRA JACINTO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>SEBASTIAO BRAS GUERRA JACINTO</strong><br>R. ANGELO SILVA, 537, N.OURINHOS<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio66, "click", function(event) { infowindow.open(map,markerInicio66);});
map.setCenter(latlng); } });
var endereco67="R. CARDOSO RIBEIRO, 1040, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco67}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio67 = new google.maps.Marker({position: latlng,map: map, title:"APARECIDO VIEIRA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>APARECIDO VIEIRA</strong><br>R. CARDOSO RIBEIRO, 1040, V.BOA ESPERANCA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio67, "click", function(event) { infowindow.open(map,markerInicio67);});
map.setCenter(latlng); } });
var endereco68="ALAMEDA ORLANDO SILVESTRINI 69, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco68}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio68 = new google.maps.Marker({position: latlng,map: map, title:"PAULO ROGERIO R PEROZI", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>PAULO ROGERIO R PEROZI</strong><br>ALAMEDA ORLANDO SILVESTRINI 69, 0, JD DA PAINEIRAS<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio68, "click", function(event) { infowindow.open(map,markerInicio68);});
map.setCenter(latlng); } });
var endereco69="R. MANOEL DA SILVA MANO, 816, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco69}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio69 = new google.maps.Marker({position: latlng,map: map, title:"ELZA AP CUNHA TOALHARES", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ELZA AP CUNHA TOALHARES</strong><br>R. MANOEL DA SILVA MANO, 816, V.SOARES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio69, "click", function(event) { infowindow.open(map,markerInicio69);});
map.setCenter(latlng); } });
var endereco70="R. PARANA, 911, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco70}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio70 = new google.maps.Marker({position: latlng,map: map, title:"CARLOS ORTEGA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>CARLOS ORTEGA</strong><br>R. PARANA, 911, CENTRO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio70, "click", function(event) { infowindow.open(map,markerInicio70);});
map.setCenter(latlng); } });
var endereco71="R. JOSE FERREIRA FILHO, 33, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco71}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio71 = new google.maps.Marker({position: latlng,map: map, title:"EGIDIO BRESSANIN", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>EGIDIO BRESSANIN</strong><br>R. JOSE FERREIRA FILHO, 33, V.SANDANO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio71, "click", function(event) { infowindow.open(map,markerInicio71);});
map.setCenter(latlng); } });
var endereco72="R. JOSE PEDROSO 240, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco72}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio72 = new google.maps.Marker({position: latlng,map: map, title:"BENEDITA IZABEL DE SOUZA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>BENEDITA IZABEL DE SOUZA</strong><br>R. JOSE PEDROSO 240, 0, PQ.MINAS GERAI<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio72, "click", function(event) { infowindow.open(map,markerInicio72);});
map.setCenter(latlng); } });
var endereco73="VIELA ANTONIO CRUZ 15, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco73}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio73 = new google.maps.Marker({position: latlng,map: map, title:"JOAO CARLOS RODRIGUES", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JOAO CARLOS RODRIGUES</strong><br>VIELA ANTONIO CRUZ 15, 0, JD SAO FRCO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio73, "click", function(event) { infowindow.open(map,markerInicio73);});
map.setCenter(latlng); } });
var endereco74="R. APULCO TAVARES DE SOUZA, 38, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco74}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio74 = new google.maps.Marker({position: latlng,map: map, title:"ATALIBA TEODORO DAMASCENO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ATALIBA TEODORO DAMASCENO</strong><br>R. APULCO TAVARES DE SOUZA, 38, V.S.JOSE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio74, "click", function(event) { infowindow.open(map,markerInicio74);});
map.setCenter(latlng); } });
var endereco75="TRAV. ZULMIRA FERNANDES BELTRAMI, 84, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco75}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio75 = new google.maps.Marker({position: latlng,map: map, title:"ANTONIO DE SOUZA FILHO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ANTONIO DE SOUZA FILHO</strong><br>TRAV. ZULMIRA FERNANDES BELTRAMI, 84, V.MORAES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio75, "click", function(event) { infowindow.open(map,markerInicio75);});
map.setCenter(latlng); } });
var endereco76="R. ANGELO PERUCI, 379, OURINHOS - ";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco76}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio76 = new google.maps.Marker({position: latlng,map: map, title:"CELSO CHAGAS", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>CELSO CHAGAS</strong><br>R. ANGELO PERUCI, 379, CJ.RES.CIZIRA SANDAN<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio76, "click", function(event) { infowindow.open(map,markerInicio76);});
map.setCenter(latlng); } });
var endereco77="RUA JOSE DAS NEVES JUNIOR 520, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco77}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio77 = new google.maps.Marker({position: latlng,map: map, title:"CORNELIO DOS SANTOS", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>CORNELIO DOS SANTOS</strong><br>RUA JOSE DAS NEVES JUNIOR 520, 0, JD MATILDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio77, "click", function(event) { infowindow.open(map,markerInicio77);});
map.setCenter(latlng); } });
var endereco78="R. LIBERDADE, 339, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco78}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio78 = new google.maps.Marker({position: latlng,map: map, title:"IRENE DONATO DO REGO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>IRENE DONATO DO REGO</strong><br>R. LIBERDADE, 339, V.ODILON<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio78, "click", function(event) { infowindow.open(map,markerInicio78);});
map.setCenter(latlng); } });
var endereco79="MANOEL COSTA DUCA, 118, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco79}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio79 = new google.maps.Marker({position: latlng,map: map, title:"ANGELA LUDVINSK", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ANGELA LUDVINSK</strong><br>MANOEL COSTA DUCA, 118, JD.IND.<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio79, "click", function(event) { infowindow.open(map,markerInicio79);});
map.setCenter(latlng); } });
var endereco80="R. DO EXPEDICIONARIO, 1585, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco80}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio80 = new google.maps.Marker({position: latlng,map: map, title:"ROBSON SELAS JORGE", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ROBSON SELAS JORGE</strong><br>R. DO EXPEDICIONARIO, 1585, JD.MATILDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio80, "click", function(event) { infowindow.open(map,markerInicio80);});
map.setCenter(latlng); } });
var endereco81="R.REVERENDO MANOEL ALVES DE BRITO, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco81}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio81 = new google.maps.Marker({position: latlng,map: map, title:"ANTONIO CARLOS MARTINS", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ANTONIO CARLOS MARTINS</strong><br>R.REVERENDO MANOEL ALVES DE BRITO, JD OURO VERDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio81, "click", function(event) { infowindow.open(map,markerInicio81);});
map.setCenter(latlng); } });
var endereco82="RUA DUQUE DE CAXIAS, 441 FUNDOS, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco82}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio82 = new google.maps.Marker({position: latlng,map: map, title:"WAGNER RODRIGUES DA COSTA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>WAGNER RODRIGUES DA COSTA</strong><br>RUA DUQUE DE CAXIAS, 441 FUNDOS, VILA RECREIO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio82, "click", function(event) { infowindow.open(map,markerInicio82);});
map.setCenter(latlng); } });
var endereco83="R. PADRE RUI CANDIDO DA SILVA, 579, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco83}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio83 = new google.maps.Marker({position: latlng,map: map, title:"ARMANDO FERNANDES FILHO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ARMANDO FERNANDES FILHO</strong><br>R. PADRE RUI CANDIDO DA SILVA, 579, V.ODILON<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio83, "click", function(event) { infowindow.open(map,markerInicio83);});
map.setCenter(latlng); } });
var endereco84="R. MONSENHOR CORDOVA, 191, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco84}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio84 = new google.maps.Marker({position: latlng,map: map, title:"MARIA LUIZA DE ALMEIDA DANDREA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>MARIA LUIZA DE ALMEIDA DANDREA</strong><br>R. MONSENHOR CORDOVA, 191, CENTRO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio84, "click", function(event) { infowindow.open(map,markerInicio84);});
map.setCenter(latlng); } });
var endereco85="R JOAO VILAR PEREZ, 616, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco85}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio85 = new google.maps.Marker({position: latlng,map: map, title:"CLARICE TEREZINHA AZEVEDO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>CLARICE TEREZINHA AZEVEDO</strong><br>R JOAO VILAR PEREZ, 616, VILLAR VILLE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio85, "click", function(event) { infowindow.open(map,markerInicio85);});
map.setCenter(latlng); } });
var endereco86="AV. PRESIDENTE GETULIO VARGAS, 678, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco86}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio86 = new google.maps.Marker({position: latlng,map: map, title:"CELIO GUIMARAES", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>CELIO GUIMARAES</strong><br>AV. PRESIDENTE GETULIO VARGAS, 678, JD.MATILDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio86, "click", function(event) { infowindow.open(map,markerInicio86);});
map.setCenter(latlng); } });
var endereco87="R JUSTINA BORTOLATO CASSIOLATO, 107, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco87}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio87 = new google.maps.Marker({position: latlng,map: map, title:"JOSE ROBERTO MARIGO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JOSE ROBERTO MARIGO</strong><br>R JUSTINA BORTOLATO CASSIOLATO, 107, JD MATILDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio87, "click", function(event) { infowindow.open(map,markerInicio87);});
map.setCenter(latlng); } });
var endereco88="JOSE CAMPOS DE AZEVEDO 197, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco88}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio88 = new google.maps.Marker({position: latlng,map: map, title:"ROSANA LOPES DE MATOS", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ROSANA LOPES DE MATOS</strong><br>JOSE CAMPOS DE AZEVEDO 197, 0, JD.NAZARETH<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio88, "click", function(event) { infowindow.open(map,markerInicio88);});
map.setCenter(latlng); } });
var endereco89="R JOSE CAMPOS DE AZEVEDO 197, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco89}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio89 = new google.maps.Marker({position: latlng,map: map, title:"LUIS CARLOS CAPASSO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>LUIS CARLOS CAPASSO</strong><br>R JOSE CAMPOS DE AZEVEDO 197, 0, JD NAZARETH<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio89, "click", function(event) { infowindow.open(map,markerInicio89);});
map.setCenter(latlng); } });
var endereco90="AYRTON SENNA DA SILVA, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco90}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio90 = new google.maps.Marker({position: latlng,map: map, title:"VALDENISIA OLIVEIRA DA ROCHA PORTILHO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>VALDENISIA OLIVEIRA DA ROCHA PORTILHO</strong><br>AYRTON SENNA DA SILVA, CJ.HAB.OURINHOS CAIU<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio90, "click", function(event) { infowindow.open(map,markerInicio90);});
map.setCenter(latlng); } });
var endereco91="PRACA ARQUIPO MATACHANA, 35, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco91}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio91 = new google.maps.Marker({position: latlng,map: map, title:"SILVANA DE LIMA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>SILVANA DE LIMA</strong><br>PRACA ARQUIPO MATACHANA, 35, V.MORAES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio91, "click", function(event) { infowindow.open(map,markerInicio91);});
map.setCenter(latlng); } });
var endereco92="R DOMINGOS BELLEI 203, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco92}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio92 = new google.maps.Marker({position: latlng,map: map, title:"ANTONIO ANGELO FILHO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ANTONIO ANGELO FILHO</strong><br>R DOMINGOS BELLEI 203, 0, VL N S FATIMA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio92, "click", function(event) { infowindow.open(map,markerInicio92);});
map.setCenter(latlng); } });
var endereco93="R.EMILIA TERCARIOL TOCALINO, 152, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco93}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio93 = new google.maps.Marker({position: latlng,map: map, title:"MOACIR KAMAGUSO JAMAICO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>MOACIR KAMAGUSO JAMAICO</strong><br>R.EMILIA TERCARIOL TOCALINO, 152, PQ.MINAS GERAIS<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio93, "click", function(event) { infowindow.open(map,markerInicio93);});
map.setCenter(latlng); } });
var endereco94="VICENTE DO AMARAL, 133, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco94}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio94 = new google.maps.Marker({position: latlng,map: map, title:"MARIA AP RODRIGUES", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>MARIA AP RODRIGUES</strong><br>VICENTE DO AMARAL, 133, JD MATILDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio94, "click", function(event) { infowindow.open(map,markerInicio94);});
map.setCenter(latlng); } });
var endereco95="DISTRITO INDUSTRIAL S/N, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco95}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio95 = new google.maps.Marker({position: latlng,map: map, title:"JOELSO MANTOVANI MARTINS", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JOELSO MANTOVANI MARTINS</strong><br>DISTRITO INDUSTRIAL S/N, D.IND.DR.HELIO SILVA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio95, "click", function(event) { infowindow.open(map,markerInicio95);});
map.setCenter(latlng); } });
var endereco96="RICIERI OTAVIO ARGENTA 941, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco96}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio96 = new google.maps.Marker({position: latlng,map: map, title:"PAULO ROQUE DA SILVA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>PAULO ROQUE DA SILVA</strong><br>RICIERI OTAVIO ARGENTA 941, 0, V.S.LUIZ<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio96, "click", function(event) { infowindow.open(map,markerInicio96);});
map.setCenter(latlng); } });
var endereco97="ANTONIO SALADINI 246 AP 124, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco97}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio97 = new google.maps.Marker({position: latlng,map: map, title:"EDNA EMIKO KANASHIRO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>EDNA EMIKO KANASHIRO</strong><br>ANTONIO SALADINI 246 AP 124, 0, JD PAULISTA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio97, "click", function(event) { infowindow.open(map,markerInicio97);});
map.setCenter(latlng); } });
var endereco98="R. FRANCISCA ROBLES MADEIRA, 251, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco98}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio98 = new google.maps.Marker({position: latlng,map: map, title:"ANGELA BRUDER MARTINS", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ANGELA BRUDER MARTINS</strong><br>R. FRANCISCA ROBLES MADEIRA, 251, V.S.SILVESTRE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio98, "click", function(event) { infowindow.open(map,markerInicio98);});
map.setCenter(latlng); } });
var endereco99="AV MILTON MACHADO 117, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco99}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio99 = new google.maps.Marker({position: latlng,map: map, title:"DENIVAL XAVIER DE CARVALHO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>DENIVAL XAVIER DE CARVALHO</strong><br>AV MILTON MACHADO 117, CJ.RES.FLAMBOYANT<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio99, "click", function(event) { infowindow.open(map,markerInicio99);});
map.setCenter(latlng); } });
var endereco100="R. REINALDO AZEVEDO, 300, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco100}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio100 = new google.maps.Marker({position: latlng,map: map, title:"ANTONIO FRANCISCO RONSSI CORREA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ANTONIO FRANCISCO RONSSI CORREA</strong><br>R. REINALDO AZEVEDO, 300, JD.PAUL.<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio100, "click", function(event) { infowindow.open(map,markerInicio100);});
map.setCenter(latlng); } });
var endereco101="R. GONCALVES LEDO, 481, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco101}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio101 = new google.maps.Marker({position: latlng,map: map, title:"ADAO PESSOA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ADAO PESSOA</strong><br>R. GONCALVES LEDO, 481, PQ.MINAS GERAIS<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio101, "click", function(event) { infowindow.open(map,markerInicio101);});
map.setCenter(latlng); } });
var endereco102="R. REVERENDO MANOEL ALVES DE BRITO, 500, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco102}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio102 = new google.maps.Marker({position: latlng,map: map, title:"APARECIDA ANDRADE DIAS", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>APARECIDA ANDRADE DIAS</strong><br>R. REVERENDO MANOEL ALVES DE BRITO, 500, JD.OURO VERDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio102, "click", function(event) { infowindow.open(map,markerInicio102);});
map.setCenter(latlng); } });
var endereco103="R. GOVERNADOR ARMANDO SALES, 393, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco103}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio103 = new google.maps.Marker({position: latlng,map: map, title:"JOSE CARLOS ROSINE", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JOSE CARLOS ROSINE</strong><br>R. GOVERNADOR ARMANDO SALES, 393, V.MORAES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio103, "click", function(event) { infowindow.open(map,markerInicio103);});
map.setCenter(latlng); } });
var endereco104="R. RICARDO OTERO, 1190, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco104}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio104 = new google.maps.Marker({position: latlng,map: map, title:"JANDIRA TOALHARES", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JANDIRA TOALHARES</strong><br>R. RICARDO OTERO, 1190, V.S.SILVESTRE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio104, "click", function(event) { infowindow.open(map,markerInicio104);});
map.setCenter(latlng); } });
var endereco105="MACHADO FLORENCE 332, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco105}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio105 = new google.maps.Marker({position: latlng,map: map, title:"LENICE BATTISTETTI FIORENTINO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>LENICE BATTISTETTI FIORENTINO</strong><br>MACHADO FLORENCE 332, 0, V.BOA ESPERANCA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio105, "click", function(event) { infowindow.open(map,markerInicio105);});
map.setCenter(latlng); } });
var endereco106="AV HORACIO SOARES 1494, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco106}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio106 = new google.maps.Marker({position: latlng,map: map, title:"JOAO FRANCISCO HOLMO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JOAO FRANCISCO HOLMO</strong><br>AV HORACIO SOARES 1494, 0, JD PAULISTA<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio106, "click", function(event) { infowindow.open(map,markerInicio106);});
map.setCenter(latlng); } });
var endereco107="RUA PADRE RUY CANDIDO DA SILVA, 1346, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco107}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio107 = new google.maps.Marker({position: latlng,map: map, title:"INES MORENO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>INES MORENO</strong><br>RUA PADRE RUY CANDIDO DA SILVA, 1346, VL ADILON<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio107, "click", function(event) { infowindow.open(map,markerInicio107);});
map.setCenter(latlng); } });
var endereco108="RUA JANDYRA GOMES DE OLIVEIRA, 70, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco108}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio108 = new google.maps.Marker({position: latlng,map: map, title:"JOSE DONIZETE RIBEIRO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JOSE DONIZETE RIBEIRO</strong><br>RUA JANDYRA GOMES DE OLIVEIRA, 70, VL SAO SILVESTR<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio108, "click", function(event) { infowindow.open(map,markerInicio108);});
map.setCenter(latlng); } });
var endereco109="R. MIGUEL VITA, 47, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco109}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio109 = new google.maps.Marker({position: latlng,map: map, title:"FRANCISCO MARQUES", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>FRANCISCO MARQUES</strong><br>R. MIGUEL VITA, 47, V.MORAES<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio109, "click", function(event) { infowindow.open(map,markerInicio109);});
map.setCenter(latlng); } });
var endereco110="R JOSE GERALDO BELTRAMI 51, 0, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco110}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio110 = new google.maps.Marker({position: latlng,map: map, title:"VERA LUCIA CANDIDO GALLO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>VERA LUCIA CANDIDO GALLO</strong><br>R JOSE GERALDO BELTRAMI 51, 0, JD ESTORIL<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio110, "click", function(event) { infowindow.open(map,markerInicio110);});
map.setCenter(latlng); } });
var endereco111="R. PARANA, 830 AP-92, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco111}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio111 = new google.maps.Marker({position: latlng,map: map, title:"JULIO CESAR BURATI", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>JULIO CESAR BURATI</strong><br>R. PARANA, 830 AP-92, CENTRO<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio111, "click", function(event) { infowindow.open(map,markerInicio111);});
map.setCenter(latlng); } });
var endereco112="R.JOSEFA CORONATO DOS SANTOS , 341, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco112}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio112 = new google.maps.Marker({position: latlng,map: map, title:"REGINA SAXURI HISAMURA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>REGINA SAXURI HISAMURA</strong><br>R.JOSEFA CORONATO DOS SANTOS , 341, JD SAO SILVESTR<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio112, "click", function(event) { infowindow.open(map,markerInicio112);});
map.setCenter(latlng); } });
var endereco113="JOAQUIM GARCIA LEAL, 48, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco113}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio113 = new google.maps.Marker({position: latlng,map: map, title:"ERIK NILSON DE SOUZA BARROS", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ERIK NILSON DE SOUZA BARROS</strong><br>JOAQUIM GARCIA LEAL, 48, N.OURINHOS<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio113, "click", function(event) { infowindow.open(map,markerInicio113);});
map.setCenter(latlng); } });
var endereco114="RUA PROF JOSE AUGUSTO DE OLIVEIRA, 455, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco114}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio114 = new google.maps.Marker({position: latlng,map: map, title:"SANDRA MARIA DA SILVA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>SANDRA MARIA DA SILVA</strong><br>RUA PROF JOSE AUGUSTO DE OLIVEIRA, 455, JD BEATRIZ<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio114, "click", function(event) { infowindow.open(map,markerInicio114);});
map.setCenter(latlng); } });
var endereco115="R VALENTIM GENTIL, 45, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco115}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio115 = new google.maps.Marker({position: latlng,map: map, title:"URCILIO C. PEREIRA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>URCILIO C. PEREIRA</strong><br>R VALENTIM GENTIL, 45, BOA ESPERANCA I<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio115, "click", function(event) { infowindow.open(map,markerInicio115);});
map.setCenter(latlng); } });
var endereco116="R. LINO BLISI, 130, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco116}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio116 = new google.maps.Marker({position: latlng,map: map, title:"ALTAIR MATSAKURA YAMASI", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ALTAIR MATSAKURA YAMASI</strong><br>R. LINO BLISI, 130, VILAR VILLI<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio116, "click", function(event) { infowindow.open(map,markerInicio116);});
map.setCenter(latlng); } });
var endereco117="RUA MIGUEL VIEIRA DA SILVA, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco117}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio117 = new google.maps.Marker({position: latlng,map: map, title:"REGINALDO CANDIDO SOARES", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>REGINALDO CANDIDO SOARES</strong><br>RUA MIGUEL VIEIRA DA SILVA, JD MATILDE<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio117, "click", function(event) { infowindow.open(map,markerInicio117);});
map.setCenter(latlng); } });
var endereco118="R. ROBERTO LANDELL DE MOURA, 24, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco118}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio118 = new google.maps.Marker({position: latlng,map: map, title:"MAURO SERGIO SILVEIRA", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>MAURO SERGIO SILVEIRA</strong><br>R. ROBERTO LANDELL DE MOURA, 24, CJ.HAB.ORLANDO QUAGL<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio118, "click", function(event) { infowindow.open(map,markerInicio118);});
map.setCenter(latlng); } });
var endereco119="R. DOUTOR JORGE G. RIBEIRO, 79, OURINHOS - SP";
geocoder = new google.maps.Geocoder();
geocoder.geocode({"address":endereco119}, function(results, status){ if( status = google.maps.GeocoderStatus.OK){ latlng = results[0].geometry.location;
markerInicio119 = new google.maps.Marker({position: latlng,map: map, title:"ALEXANDRE BEGHETTO", icon: "lupa.bmp"});
var infowindow = new google.maps.InfoWindow({ content: '<strong>ALEXANDRE BEGHETTO</strong><br>R. DOUTOR JORGE G. RIBEIRO, 79, NOVA OURINHOS<BR>STATUS: VISITADO'});
google.maps.event.addListener(markerInicio119, "click", function(event) { infowindow.open(map,markerInicio119);});
map.setCenter(latlng); } });
}
</script>
</head>
<body onload="carregar()">
<div id="mapa"></div>
</body>
</html>
Link to comment
Share on other sites

   cERes := "AVENIDA FAB"
   c_Nro := "100"
   oCida := "MACAPÁ"
   oUf   := "AP"
   Show_Way( cERes, c_Nro, oCida, oUf )

*---------------

FUNCTION Show_Way( End_Clie, Nmr_Clie, Cid_Clie, Est_Clie )
   If !IsInternet()
      Msgalert("não conectado a internet.", "Aviso!")
      Return nil
   Endif
   
   mEnd := "AVENIDA DECIMA NONA"
   mNmr := "1772"
   mCid := "MACAPÁ-AP"
   
   Ferase(GetCurDir()+"\tempgmapdist.html") // uRegPath:= "c:\test"
   oOle:= CreateObject("InternetExplorer.Application")
   oOle:Visible := .t.
   oOle:ToolBar := .f.
   oOle:StatusBar := .t.
   oOle:MenuBar := .f.
   cHtml := MemoRead(GetCurDir()+"\gmapdist.html")
   cHtml := StrTran( cHtml, "ORIGEM", Alltrim(mEnd)+", "+Alltrim(mNmr)+", "+Alltrim(mCid))
   cHtml := StrTran( cHtml, "DESTINO", Alltrim(End_Clie)+", "+Alltrim(Nmr_Clie)+" "+Alltrim(Cid_Clie)+" - "+Est_Clie)
   FileWrite( GetCurDir()+"\tempgmapdist.html", cHtml )
   oOle:Navigate2(GetCurDir()+"\tempgmapdist.html")
   hWnd:=oOle:hWnd
   ShowWindow(hWnd, 3 ) //SW_MAXIMIZE=3 SW_NORMAL=1 SW_MINIMIZE=6
   BringWindowToTop(hWnd)
RETURN NIL

Conteúdo do gmapdist.html, que você deve gravar na pasta do seu executável com esse mesmo nome.

<html><head><title>Mapa com rota</title>
<script type='text/javascript' src='http://maps.google.com/maps/api/js?v=3.1&sensor=false&language=pt-BR'></script>

<script type='text/javascript'>
var map, geocoder;
var mapDisplay, directionsService;
function initialize() {
   var myOptions = {zoom: 15,mapTypeId: google.maps.MapTypeId.ROADMAP};
   map = new google.maps.Map(document.getElementById('map_canvas'), myOptions);
   geocoder = new google.maps.Geocoder();
   var enderDe = "ORIGEM";
   var enderAte = "DESTINO";
   geocoder.geocode( { 'address': enderAte, 'region' : 'BR'},trataLocs);
   initializeDirections ();
   calcRota (enderDe, enderAte);
}

function initializeDirections () {
   directionsService = new google.maps.DirectionsService();
   mapDisplay = new google.maps.DirectionsRenderer();
   mapDisplay.setMap(map);
   mapDisplay.setPanel(document.getElementById("panel"))
}

function calcRota(endDe, endPara) {
   var request = {
      origin:endDe,
      destination:endPara,
      travelMode: google.maps.DirectionsTravelMode.DRIVING
   };
   directionsService.route(request, function(response, status) {
      if (status == google.maps.DirectionsStatus.OK) {
      mapDisplay.setDirections(response) }
   })
}

function trataLocs (results, status) {
   var elem = document.getElementById('msg');
   if (status == google.maps.GeocoderStatus.OK) {
      map.setCenter(results[0].geometry.location);
      var marker = new google.maps.Marker({
      map: map,
      position: results[0].geometry.location });
      if (results.length > 1) {
         var i, txt = '<select style="font-family:Verdana;font-size:8pt;width=550px;" onchange="mostraEnd(this.options[this.selectedIndex].text);">';
         elem.innerHTML = 'O endereço exato não foi localizado - há ' + results.length.toString() + ' resultados aproximados.<br />';
         for (i = 0; i < results.length; i++) {
            txt = txt + '<option value="' + i.toString() + '"';
            if (i == 0) {
               txt = txt + ' selected="selected"';
               txt = txt + '>' + results[i].formatted_address + '</option>'; }
         }
         txt = txt + '</select>'
         elem.innerHTML = elem.innerHTML + txt;
      }
   } else
   elem.innerHTML = 'Erro no tratamento do endereço :<br /><b>' + status + '</b>';
}
</script>

</head>
<body onload='initialize();' style='font-family:Verdana;font-size:8pt;margin:5px 0 5px 0;'>
<center>
<div id='map_canvas' style='width:800px;height:450px'></div>
<div id='panel' style='width:550px;height:450px'></div>
</center>
</html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...