| Current File : /home/jvzmxxx/wiki1/extensions/Maps/INSTALL.md |
# Maps installation
These are the installation and configuration instructions for the [Maps extension](README.md).
For an overview of the different versions of the extension and their compatibility, scroll down.
## Download and installation
Go to the root directory of your MediaWiki installation.
If you have previously installed Composer skip to step 2.
To install Composer, just download http://getcomposer.org/composer.phar into your
current directory.
wget http://getcomposer.org/composer.phar
#### Step 2
Now using Composer, install Maps
php composer.phar require mediawiki/maps "*"
#### Verify installation success
As final step, you can verify Maps got installed by looking at the Special:Version page on your wiki
and verifying the Maps extension is listed.
If you want to use the Semantic MediaWiki integration, you will also need to install Semantic MediaWiki.
## Configuration
At present, minimal configuration is needed to get Maps running. Configuration is done like in most
MediaWiki extensions, by placing some simple snippets of PHP code at the bottom of MediaWiki's
LocalSettings.php.
As of June 2016, Google requires you to provide an API key when you where not already using their
maps API. This means that you will either need to configure this key, or use another of the
supported mapping services.
### Required configuration for Google Maps
$GLOBALS['egMapsGMaps3ApiKey'] = 'your-api-key';
### Not using Google Maps by default
For OpenLayers:
$GLOBALS['egMapsDefaultService'] = 'openlayers';
For Leaflet:
$GLOBALS['egMapsDefaultService'] = 'leaflet';
You might also want to fully disable Google Maps by placing a copy of the `egMapsAvailableServices`
setting in LocalSettings, and removing the `googlemaps3` line.
See the [Maps settings file](Maps_Settings.php) for all available configuration options.
### Platform compatibility and release status
The PHP and MediaWiki version ranges listed are those in which Maps is known to work. It might also
work with more recent versions of PHP and MediaWiki, though this is not guaranteed. Increases of
minimum requirements are indicated in bold.
<table>
<tr>
<th></th>
<th>PHP</th>
<th>MediaWiki</th>
<th>Semantic MediaWiki</th>
<th>Release status</th>
</tr>
<tr>
<th>Maps 4.1.x</th>
<td><strong>5.6</strong> - TBD</td>
<td>TBD - 1.29+</td>
<td>TBD - 2.5+</td>
<td>In development</td>
</tr>
<tr>
<th>Maps 4.0.x</th>
<td>5.5 - 7.0</td>
<td>1.23 - 1.28</td>
<td>2.1 - 2.4</td>
<td>Stable release</td>
</tr>
<tr>
<th>Maps 3.8.x</th>
<td>5.5 - 7.0</td>
<td>1.23 - 1.27</td>
<td>Not applicable</td>
<td>Legacy release</td>
</tr>
</table>
Older versions (no longer supported):
<table>
<tr>
<th></th>
<th>PHP</th>
<th>MediaWiki</th>
<th>Composer</th>
<th>Validator</th>
</tr>
<tr>
<th>Maps 3.7.x</th>
<td>5.5 - 7.0</td>
<td>1.23 - 1.27</td>
<td>Required</td>
<td>Handled by Composer</td>
</tr>
<tr>
<th>Maps 3.6.x</th>
<td><strong>5.5</strong> - 7.0</td>
<td><strong>1.23</strong> - 1.27</td>
<td>Required</td>
<td>Handled by Composer</td>
</tr>
<tr>
<th>Maps 3.5.x</th>
<td>5.3.2 - 7.0</td>
<td>1.18 - 1.27</td>
<td>Required</td>
<td>Handled by Composer</td>
</tr>
<tr>
<th>Maps 3.4.x</th>
<td>5.3.2 - 7.0</td>
<td>1.18 - 1.27</td>
<td>Required</td>
<td>Handled by Composer</td>
</tr>
<tr>
<th>Maps 3.3.x</th>
<td>5.3.2 - 5.6.x</td>
<td>1.18 - 1.25</td>
<td>Required</td>
<td>Handled by Composer</td>
</tr>
<tr>
<th>Maps 3.1.x & 3.2.x</th>
<td>5.3.2 - 5.6.x</td>
<td>1.18 - 1.24</td>
<td>Required</td>
<td>Handled by Composer</td>
</tr>
<tr>
<th>Maps 3.0.x</th>
<td>5.3.2 - 5.6.x</td>
<td>1.18 - 1.23</td>
<td>Required</td>
<td>Handled by Composer</td>
</tr>
<tr>
<th>Maps 2.0.x</th>
<td><strong>5.3.2</strong> - 5.5.x</td>
<td><strong>1.18</strong> - 1.23</td>
<td>Not supported</td>
<td>0.5.1</td>
</tr>
<tr>
<th>Maps 1.0.5</th>
<td>5.2.0 - 5.3.x</td>
<td>1.17 - 1.19</td>
<td>Not supported</td>
<td>0.4.13 or 0.4.14</td>
</tr>
</table>
### Database support
All current versions of Maps have full support for all databases that can be used with MediaWiki.