Hi,
also früher musste man ihn für ein spezifisches Verzeichnis registrieren. Kann sein, dass sich das geändert hat, Google schreibt aber immer noch:
The Google Maps API lets you embed Google Maps in your own web pages. A single Maps API key is valid for a single "directory" on your web server, so if you sign up for the URL
http://www.mygooglemapssite.com/mysite, the key you get will be good for all URLs in the
http://www.mygooglemapssite.com/mysite/ directory.
(
http://code.google.com/apis/maps/signup.html)
Afaik gibt es aber mehrere Keys für einen Google-Account. Ich hab zumindest mehrere registriert (einen für die Domain ulrichkuester.de und einen für die Domain hnsp.inf-bb.uni-jena.de - alles mit demselben Google-Account).
@Frank:
Dieser Befehl
// Create basic map into div with id "map"
map = new GMap2(document.getElementById("map"));
läd die Karte in das div-Element mit id map (wie da schon steht).
Probier mal in Deiner Seite, statt <td style="width: 100%; height: 500pt;" id="map">
da ein <div id="map"></div> einzufügen.
Ich seh aber grad, der eigentliche Fehler wird wohl sein, dass Du zwei body-Elemente definierst:
<body bgcolor="#000000" text="black" topmargin="10" marginheight="10" leftmargin="10" marginwidth="10" onload="window.setTimeout('datumuhr()',1000)" >
<body onload="onLoad()" onunload="GUnload()">
Das geht natürlich nicht.
Grüße,
Uli