Installation: Difference between revisions

From Maps for MediaWiki
mNo edit summary
Line 4: Line 4:


Maps is installed using [https://getcomposer.org/ Composer] with [https://www.mediawiki.org/wiki/Composer MediaWiki's built-in support for Composer].
Maps is installed using [https://getcomposer.org/ Composer] with [https://www.mediawiki.org/wiki/Composer MediaWiki's built-in support for Composer].
=== Step 1/3: pick a version ===
Proceed to step 2.
If you are using an older version of MediaWiki or PHP, you will need to use an older version of the Maps extension. See the [https://github.com/JeroenDeDauw/Maps/blob/master/INSTALL.md#platform-compatibility-and-release-status compatibility table on GitHub].


=== Step 1/2: composer update ===
=== Step 1/2: composer update ===

Revision as of 14:37, 5 May 2020

This page is for wiki administrators that want to install the Maps extension. This is only possible with server access.

Installation

Maps is installed using Composer with MediaWiki's built-in support for Composer.

Step 1/2: composer update

Change to the base directory of your MediaWiki installation.

If you are using MediaWiki 1.31 or later and PHP 7.1 or later, run the following two commands:

COMPOSER=composer.local.json composer require --no-update mediawiki/maps:~7.0

composer update mediawiki/maps --no-dev -o

If you are using an older version of MediaWiki or of PHP, then run these two commands instead:

COMPOSER=composer.local.json composer require --no-update mediawiki/maps:~5.0

composer update mediawiki/maps --no-dev -o

Step 2/2: modify LocalSettings.php

Add the following line to the end of your "LocalSettings.php" file:

wfLoadExtension( 'Maps' );

Verify installation success

Check the "Special:Version" page on your wiki. If it lists Maps, then installation was successful.

Configuration

Maps works out of the box without any configuration work being required. Below are some key configuration options that you might want to change. For a comprehensive overview of all settings, see the configuration overview.

Mapping service

The Maps extension supports displaying maps using multiple mapping services, including Google Maps, Leaflet and OpenLayers. At present the default is Leaflet, while in older versions of the extension it was Google Maps.

If you do not wish to use the default, use the $egMapsDefaultService configuration parameter. Examples:

  • For Google Maps:
    $egMapsDefaultService = 'googlemaps3';
    
  • For Leaflet:
    $egMapsDefaultService = 'leaflet';
    

When using Google Maps, you will need to provide your Google API key:

$egMapsGMaps3ApiKey = 'your-api-key';

Geocoding service

The Maps extension supports geocoding, the conversion of human readable addresses to coordinates. This is done via a webservice used for each map displayed on your wiki. By default Maps uses Nominatim. To use a different geocoding service, use the $egMapsDefaultGeoService.

$egMapsDefaultGeoService = 'google';