00001 <?php
00002
00018 if ( !defined( 'MEDIAWIKI' ) ) {
00019 die( 'Not an entry point.' );
00020 }
00021
00022
00023
00024 # Mapping services configuration
00025
00026 # Array of String. The default mapping service for each feature, which will be used when no valid service is provided by the user.
00027 # Each service needs to be enabled, if not, the first one from the available services will be taken.
00028 # Note: The default service needs to be available for the feature you set it for, since it's used as a fallback mechanism.
00029 $egMapsDefaultServices['qp'] = $egMapsDefaultService;
00030 $egMapsDefaultServices['fi'] = $egMapsDefaultService;
00031
00032
00033
00034 # Queries
00035
00036 # Boolean. The default value for the forceshow parameter. Will force a map to be shown even when there are no query results
00037 # when set to true. This value will only be used when the user does not provide one.
00038 $smgQPForceShow = true;
00039
00040 # Boolean. The default value for the showtitle parameter. Will hide the title in the marker pop-ups when set to true.
00041 # This value will only be used when the user does not provide one.
00042 $smgQPShowTitle = true;
00043
00044 # String or false. Allows you to define the content and it's layout of marker pop-ups via a template.
00045 # This value will only be used when the user does not provide one.
00046 $smgQPTemplate = false;
00047
00048 # Enum. The default output format of coordinates.
00049 # Possible values: Maps_COORDS_FLOAT, Maps_COORDS_DMS, Maps_COORDS_DM, Maps_COORDS_DD
00050 $smgQPCoodFormat = $egMapsCoordinateNotation;
00051
00052 # Boolean. Indicates if coordinates should be outputted in directional notation by default.
00053 $smgQPCoodDirectional = $egMapsCoordinateDirectional;
00054
00055
00056
00057 # Forms
00058
00059 $smgFIMulti = true;
00060
00061 $smgFIFieldSize = 40;
00062
00063 # Integer or string. The default width and height of maps in forms created by using Semantic Forms.
00064 # These values only be used when the user does not provide them.
00065 $smgFIWidth = 665;
00066 $smgFIHeight = $egMapsMapHeight;
00067