openrat-cms

# OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs

OpenStreetMap.class.php (2077B)


      1 <?php
      2 // ---------------------------------------------------------------------------
      3 // $Id$
      4 // ---------------------------------------------------------------------------
      5 // OpenRat Content Management System
      6 // Copyright (C) 2002 Jan Dankert, jandankert@jandankert.de
      7 //
      8 // This program is free software; you can redistribute it and/or
      9 // modify it under the terms of the GNU General Public License
     10 // as published by the Free Software Foundation; either version 2
     11 // of the License, or (at your option) any later version.
     12 //
     13 // This program is distributed in the hope that it will be useful,
     14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
     15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     16 // GNU General Public License for more details.
     17 //
     18 // You should have received a copy of the GNU General Public License
     19 // along with this program; if not, write to the Free Software
     20 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
     21 // ---------------------------------------------------------------------------
     22 
     23 
     24 
     25 /**
     26  * Bindet die OpenStreetMap ein.
     27  * 
     28  * @author Jan Dankert
     29  */
     30 class OpenStreetMap extends Macro
     31 {
     32 	/**
     33 	 * Bitte immer alle Parameter in dieses Array schreiben, dies ist fuer den Web-Developer hilfreich.
     34 	 * @type String
     35 	 */
     36 	var $parameters  = Array(
     37 		'box'    => 'coordinates',
     38 		'layer'  => 'mapnik',
     39 		'width'  => 'Width of iframe',
     40 		'height' => 'Height of iframe',
     41 	);
     42 
     43 	/**
     44 	 * Bitte immer eine Beschreibung benutzen, dies ist fuer den Web-Developer hilfreich.
     45 	 * @type String
     46 	 */
     47 	var $description = 'Includes the OpenStreetMap.';
     48 	
     49 	var $box    = '9.9396,53.4821,10.184,53.643'; // default: Hamburg
     50 	var $layer  = 'mapnik';
     51 	var $width  = 425;
     52 	var $height = 350;
     53 
     54 	/**
     55 	 */
     56 	function execute()
     57 	{
     58 		$this->output('<iframe width="'.$this->width.'" height="'.$this->height.'" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.openstreetmap.org/export/embed.html?bbox='.$this->box.'&layer='.$this->layer.'" style="border: 1px solid black"></iframe>');
     59 	}
     60 
     61 }
     62 
     63 ?>