<?php /** * Die Google Maps ist eingehüllt in ein myPHP taglib * <code> * Wie man sie benutzen kann: * $googlemaps = new Googlemaps(); * print $googlemaps->getCss(); * print $googlemaps->getJavascript(GOOGLE_MAPS_KEY); * print $googlemaps->getHtml(); * Or * Googlemaps::css(); * Googlemaps::javascript(GOOGLE_MAPS_KEY); * Googlemaps::display(); * </code> * @package google-maps * @filesource * @see HTML_GOOGLE_MAPS_PAGE_PATH.'/Googlemaps.php' * @copyright (c) http://Finn-Rasmussen.com * @license http://Finn-Rasmussen.com/license/ myPHP License conditions * @author http://Finn-Rasmussen.com * @version 1.11 * @since 27-nov-2009 */
// Die Google Maps ist eingehüllt in ein myPHP taglib require_once(HTML_GOOGLE_MAPS_PAGE_PATH.'/Googlemaps.php');
// Das Seitenlayout DocType::display(); // Das HTML-Dokument-Typ // Der Kopf Abschnitt HeadStart::display(''); // Die <html><head> CssBase::display(); // Das Stylesheet Googlemaps::css(); // Das Style Sheet für Google Karte Googlemaps::javascript(GOOGLE_MAPS_KEY); // Der Body-Abschnitt BodyStart::display(); // Die </head><body> Googlemaps::display(); // Die Google Maps-API BodyEnd::display(); // Die </body></html> ?>