Hi,
ich hatte es vorher auch in der Funktion versucht, aber das hat auch nicht geklappt.
Unter www.mosambik.info/google kannst du dir das ja mal ansehen.
Hier auch noch mal der quellcode, aber die Linie wird immer noch nicht angezeigt.
<!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"
xmlns:v="urn:schemas-microsoft-com:vml">
<head>
<title>Google Map</title>
<script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAA-hE6C9baL2Wea6Gzdfdn8BQnTPZjkmapnTEkupB1AXq-aatS0xSNe8-yiSTu1Bqz1Hsa5zuvQ-TfGg"
type="text/javascript"></script>
<style type="text/css">
v:* {
behavior:url(#default#VML);
}
</style>
</head>
<body onunload="GUnload()">
<div id="map" style="width:700px; height:495px;"
class="Iframe"></div>
<script language="Javascript">
var map = new GMap2(document.getElementById("map"));
var myZoom = 10;
map.addMapType(G_NORMAL_MAP);
map.addMapType(G_SATELLITE_MAP);
map.addMapType(G_HYBRID_MAP);
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(53.100, 08.800), myZoom);
drawCountyBorder();
function drawCountyBorder()
{
var bounds = new GLatLngBounds();
var blue = "#0022aa";
var black = "#000000";
var polyline = new GPolyline([
new GLatLng(53.1000 +08.8000),
new GLatLng(53.4000 +08.9000),
new GLatLng(53.6000 +08.6000),
new GLatLng(53.8000 +08.3000),
])
map.addOverlay(polyline);
}
</script>
</body>
</html>
Über weitere Hilfe würde ich mich sehr freuen!
Martin