Extension:MyMap

From MediaWiki.org

Jump to: navigation, search


 

Manual on MediaWiki Extensions
List of MediaWiki Extensions
Crystal Clear action run.png
MyMap

Release status: beta

Description
License No license specified
Download no link

check usage (experimental)

Contents

[edit] What can this extension do?

[edit] Usage

[edit] Download instructions

Please cut and paste the code found below and place it in $IP/extensions/ExtensionName/ExtensionName.php. Note: $IP stands for the root directory of your MediaWiki installation, the same directory that holds LocalSettings.php.

[edit] Installation

To install this extension, add the following to LocalSettings.php:

#add configuration parameters here
#setup user rights here
require_once("$IP/extensions/ExtensionName/ExtensionName.php");

[edit] Configuration parameters

[edit] User rights

[edit] Code

  <html>
<script src="OpenLayers/OpenLayers.js"></script>
<style type="text/css">
			#map
			{
				width: 1010px;
				height: 500px;
 
				bgcolor: #EDE9E3;
			}
</style>
<div id="map" width="100%" height="100%">
<iframe src="http://localhost/map/php/main.php" height="100%" width="100%" scrolling="no">
</iframe></div>
 
 
</html>

[edit] See also