r94178 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r94177‎ | r94178 | r94179 >
Date:18:05, 10 August 2011
Author:jeroendedauw
Status:deferred
Tags:
Comment:
added docs
Modified paths:
  • /trunk/extensions/Maps/Maps_Settings.php (modified) (history)

Diff [purge]

Index: trunk/extensions/Maps/Maps_Settings.php
@@ -199,6 +199,7 @@
200200 # does not provide one.
201201 $egMapsGMaps3Type = 'roadmap';
202202
 203+ # Array. List of controls to display onto maps by default.
203204 $egMapsGMaps3Controls = array(
204205 'pan',
205206 'zoom',
@@ -207,16 +208,26 @@
208209 'streetview'
209210 );
210211
 212+ # String. The default style for the type control.
 213+ # horizontal, vertical or default
211214 $egMapsGMaps3DefTypeStyle = 'default';
212 -
 215+
 216+ # String. The default style for the zoom control.
 217+ # small, large or default
213218 $egMapsGMaps3DefZoomStyle = 'default';
214219
 220+ # Boolean. Open the info windows on load by default?
215221 $egMapsGMaps3AutoInfoWindows = false;
216222
 223+ # Array. Layers to load by default.
217224 $egMapsGMaps3Layers = array();
218225
 226+ # Integer. Default tilt when using Google Maps.
219227 $egMapsGMaps3DefaultTilt = 0;
220228
 229+ # Google JavaScript Loader API key.
 230+ # Can be obtained at: https://code.google.com/apis/loader/signup.html
 231+ # This key is needed when using Google Earth.
221232 $egGoogleJsApiKey = '';
222233
223234