We are about to switch to a new forum software. Until then we have removed the registration on this forum.
erro : maybe too < characters ? Que erro é esse ??? esta aparecendo na primeira linha do código...
<html> // o erro aparece nesta linha...//
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Traçar Rota</title>
</head>
<script type="text/javascript" src="maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="jquery.min.js"></script>
<style type="text/css">
#map_content {
height: 400px;
margin: 10px 0;
}
</style>
<script type="text/javascript">
var map;
var directionsService = new google.maps.DirectionsService();
var info = new google.maps.InfoWindow({maxWidth: 200});
var marker = new google.maps.Marker({
title: "Google Belo Horizonte",
icon: "marker.png",
position: new google.maps.LatLng("-19.92965", "-43.94078")
});
function initialize() {
var options = {
zoom: 15,
center: marker.position,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map($("#map_content")[0], options);
marker.setMap(map);
google.maps.event.addListener(marker, "click", function() {
info.setContent("Avenida Bias Fortes, 382 - Lourdes, Belo Horizonte - MG, 30170-010, Brasil");
info.open(map, marker);
});
}
$(document).ready(function() {
$("#form_route").submit(function() {
info.close();
marker.setMap(null);
var directionsDisplay = new google.maps.DirectionsRenderer();
var request = {
origin: $("#route_from").val(),
destination: marker.position,
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
directionsDisplay.setMap(map);
}
});
return false;
});
});
</script>
<body onload="initialize()">
<form action="" method="post" id="form_route">
<label>Origem: <input type="text" id="route_from" size="50" /></label>
<input type="submit" value="Traçar rota" />
</form>
<div id="map_content"></div>
</body>
</html>
Answers
Olá, para postar código no fórum, depois de colar, selecione o código é aperte
ctr k
para formatá-lo. Desta maneira é ilegível. Antes, ainda no IDE usectr/cmd T
. Se puder escrever em inglês, muito mais pessoas podem ajudá-lo. Só com o código formatado dá pra tentar achar o erro. Pode ou não ser relacionado com o símbolo<
...Também vale dar uma olhada aqui MCVE
Se for escrever em português, ao menos tente escrever certo!
Assim aumenta as chances de uma tradução online automática funcionar! :-w
Java não cria objetos com a mesma sintaxe que o JS! O formato
{property : value, ...}
é inválido em Java!Dê uma olhadinha em JSONArray & JSONObject:
http://processing.org/reference/JSONArray.html
http://processing.org/reference/JSONObject.html