Olá! Estou fazendo um sistema em Delphi e estou querendo usar a API do Google Maps. No código que está no final tem esta parte { value="Av. Paulista, São Paulo, Brasil" } que eu gostaria de pegar de um arquivo texto que será gerado com os dados da pessoa que se quiser achar a localização no mapa e colocar nesta parte dentro do arquivo html. Não entendo muito de html. Será que alguém poderia me ensinar a como fazer isto e se possível também não ser necessário teclar no botão "GO" para que faça a localização e que faça isso assim que abra a página, mas acho que isso não é possível. Desde já agradeço a ajuda que puderem me dar. Um abraço <body onload="load()" onunload="GUnload()">
<form action="#" onsubmit="showAddress(this.address.value); return false">
<p>
<input type="text" size="60" name="address" value="Av. Epitacio Pessoa, Joao Pessoa, Brasil" />
<input type="submit" value="Go!" />
</p>
<div id="map" style="width: 980px; height: 540px"></div>
</form>
</body>
E aqui o código completo
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Google Maps API Example - Geocoding API</title>
<script src="http://maps.google.com/maps?file=api&v=2.x&key=ABQIAAAAtOjLpIVcO8im8KJFR8pcMhQjskl1-YgiA_BGX2yRrf7htVrbmBTWZt39_v1rJ4xxwZZCEomegYBo1w" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
var map = null;
var geocoder = null;
function load() {
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(-15.792253570362445, -47.900390625), 04);
geocoder = new GClientGeocoder();
}
}
function showAddress(address) {
if (geocoder) {
geocoder.getLatLng(
address,
function(point) {
if (!point) {
alert(address + " not found");
} else {
map.setCenter(point, 17);
var marker = new GMarker(point);
map.addOverlay(marker);
marker.openInfoWindowHtml(address);
}
}
);
}
}
//]]>
</script>
</head>
<body onload="load()" onunload="GUnload()">
<form action="#" onsubmit="showAddress(this.address.value); return false">
<p>
<input type="text" size="60" name="address" value="Av. Epitacio Pessoa, Joao Pessoa, Brasil" />
<!-- <input type="text" size="60" name="address" iframe=endereco.txt /> -->
<input type="submit" value="Go!" />
</p>
<div id="map" style="width: 980px; height: 540px"></div>
</form>
</body>
</html>