Hallo,
<head>
<script type="text/javascript">
function get_last_track_position() {
........
........
return position;
}
</script>
</head>
<script type="text/javascript">
function initialize(last_position) {
var last_position = get_last_track_position();
alert(last_position);
if (GBrowserIsCompatible()) {
........
........
<!-- var mapcenter = new GLatLng(47.1844084,8.5316098);
var mapcenter = new GLatLng(last_position);
........
........
}
}
</script>
<body>
Gruß
warum wird ein Parameter angegeben, wenn er gleich überschirieben wird ("last\_position")?
jobo