Ich versuche seit geraumer Zeit Google Map in meine website zu intergrieren, erhalte aber keine Ansicht. Google Map wird aufgerufen, Daten werden übertragen, aber dann ist Sense.
Habe ich noch Fehler in der Syntax? Bitte um Hilfe!
Hier meine (Un-)Taten:
<?php include(WB_PATH.'/modules/gmap/functions.php'); ?>
<?php if(SHOW_GOOGLEMAP) {
gmap_doctype();
} else { ?>
<!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" xml:lang="en">
<?php } ?>
<head>
<title><?php echo WEBSITE_TITLE; ?> - <?php echo PAGE_TITLE; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php if(defined('DEFAULT_CHARSET')) { echo DEFAULT_CHARSET; } else { echo 'utf-8'; }?>" />
<meta name="description" content="<?php page_description(); ?>" />
<meta name="keywords" content="<?php page_keywords(); ?>" />
<link href="<?php echo TEMPLATE_DIR; ?>/screen.css" rel="stylesheet" type="text/css" media="screen" />
<link href="<?php echo TEMPLATE_DIR; ?>/print.css" rel="stylesheet" type="text/css" media="print" />
<?php gmap_setup(); ?>
</head>
<body <?php gmap_bodytag(''); ?>>
<div id="wrap">
<div id="header">
<h1><?php echo WEBSITE_TITLE; ?></h1>
<p><?php page_description(); ?></p>
</div>
<img id="frontphoto" src="<?php echo TEMPLATE_DIR; ?>/img/front.jpg" width="760" height="80" alt="logo" />
<div id="leftside">
<?php show_menu(1,0,-1,true,'<li>[a] [menu_title] [/a]</li>','','<ul class="avmenu">','</ul>','',''); ?>
<?php if(SHOW_SEARCH) { ?>
<div class="announce">
<h2><?php echo $TEXT['SEARCH']; ?>:</h2>
<form name="search" action="<?php echo WB_URL.'/search/index'.PAGE_EXTENSION; ?>" method="post">
<input type="text" name="string" style="width: 120px;"/>
<input type="hidden" name="submit" value="<?php echo $TEXT['SEARCH']; ?>" />
</form>
</div>
<?php } ?>
</div>
<div id="contentwide">
<?php page_content(); ?>
</div>
<div id="footer">
<?php page_footer(); ?> | Thanks: <a href="
http://www.digitalflowers.com">Digital Flowers</a> | Design by <a href="
http://andreasviklund.com">Andreas Viklund</a>
</div>
</div>
</body>
</html>