irgendwie komm ich überhaupt nicht weiter grad Kann mir wer helfen ggf.?
folgender Code:
<!DOCTYPE html> <html> <head> <meta name="viewport" content="initial-scale=1.0, user-scalable=no"/> <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> <title>Google Maps JavaScript API v3 Example: Geocoding Simple</title> <link href="http://code.google.com/apis/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="//maps.googleapis.com/maps/api/js?sensor=false"></script> <script type="text/javascript"> var geocoder; var map; function initialize() { geocoder = new google.maps.Geocoder(); var latlng = new google.maps.LatLng(53.941, 10.306); var myOptions = { zoom: 8, center: latlng, mapTypeId: google.maps.MapTypeId.ROADMAP } map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); } function codeAddress() { var address = document.getElementById("address").value; geocoder.geocode( { 'address': address}, function(results, status) { 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 }); } else { alert("Geocode was not successful for the following reason: " + status); } }); } </script> </head> <body onload="initialize()" onload="codeAddress()"> <div> <input id="address" type="textbox" value="Sydney, NSW"> <input type="button" value="Geocode" onclick="codeAddress()"> </div> <div id="map_canvas" style="height:90%;top:30px"></div> </body> </html>
Beispiel Link zum Code: code.google.com/intl/de-DE/apis/maps/documentation/javascript/examples/geocoding-simple.html
KLickt man auf den Button sucht er in der Map nach den eingegeben Daten. Ich möchte das ganze nun ganz gerne so umsetzen das er direkt beim / nach dem laden bzw. öffnen der Seite den Wert welchen er automatisch in das Feld einträgt ( in dem Fall ja Sydney, NSW ) direkt sucht / anzeigt und das nicht erst macht wenn man auf den BUtton geklickt hat ....
Habs mit Body onload wie oben zu sehen, window onload etc. versucht es klappt einfafch nicht Hat jemand einen Tipp wie man das realisieren könnte?
Vielen Dank für Hilfe im voraus!