Index: trunk/extensions/Maps/Maps_Settings.php |
— | — | @@ -199,6 +199,7 @@ |
200 | 200 | # does not provide one. |
201 | 201 | $egMapsGMaps3Type = 'roadmap'; |
202 | 202 | |
| 203 | + # Array. List of controls to display onto maps by default. |
203 | 204 | $egMapsGMaps3Controls = array( |
204 | 205 | 'pan', |
205 | 206 | 'zoom', |
— | — | @@ -207,16 +208,26 @@ |
208 | 209 | 'streetview' |
209 | 210 | ); |
210 | 211 | |
| 212 | + # String. The default style for the type control. |
| 213 | + # horizontal, vertical or default |
211 | 214 | $egMapsGMaps3DefTypeStyle = 'default'; |
212 | | - |
| 215 | + |
| 216 | + # String. The default style for the zoom control. |
| 217 | + # small, large or default |
213 | 218 | $egMapsGMaps3DefZoomStyle = 'default'; |
214 | 219 | |
| 220 | + # Boolean. Open the info windows on load by default? |
215 | 221 | $egMapsGMaps3AutoInfoWindows = false; |
216 | 222 | |
| 223 | + # Array. Layers to load by default. |
217 | 224 | $egMapsGMaps3Layers = array(); |
218 | 225 | |
| 226 | + # Integer. Default tilt when using Google Maps. |
219 | 227 | $egMapsGMaps3DefaultTilt = 0; |
220 | 228 | |
| 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. |
221 | 232 | $egGoogleJsApiKey = ''; |
222 | 233 | |
223 | 234 | |