-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMaps.classes.php
More file actions
71 lines (55 loc) · 4.26 KB
/
Maps.classes.php
File metadata and controls
71 lines (55 loc) · 4.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
$classes = array();
$classes['MapsHooks'] = __DIR__ . '/Maps.hooks.php';
$classes['Maps\Element'] = __DIR__ . '/includes/Element.php';
$classes['MapsMapper'] = __DIR__ . '/includes/Maps_Mapper.php';
$classes['MapsDistanceParser'] = __DIR__ . '/includes/Maps_DistanceParser.php';
$classes['MapsGeoFunctions'] = __DIR__ . '/includes/Maps_GeoFunctions.php';
$classes['Maps\Geocoders'] = __DIR__ . '/includes/Geocoders.php';
$classes['Maps\Geocoder'] = __DIR__ . '/includes/Geocoder.php';
$classes['MapsKMLFormatter'] = __DIR__ . '/includes/Maps_KMLFormatter.php';
$classes['MapsLayer'] = __DIR__ . '/includes/Maps_Layer.php';
$classes['MapsLayerPage'] = __DIR__ . '/includes/Maps_LayerPage.php';
$classes['MapsLayers'] = __DIR__ . '/includes/Maps_Layers.php';
$classes['iMappingService'] = __DIR__ . '/includes/iMappingService.php';
$classes['MapsMappingServices'] = __DIR__ . '/includes/Maps_MappingServices.php';
$classes['MapsMappingService'] = __DIR__ . '/includes/Maps_MappingService.php';
$classes['MapsBaseFillableElement'] = __DIR__ . '/includes/Maps_BaseFillableElement.php';
$classes['MapsBaseStrokableElement'] = __DIR__ . '/includes/Maps_BaseStrokableElement.php';
$classes['MapsDisplayMapRenderer'] = __DIR__ . '/includes/Maps_DisplayMapRenderer.php';
$classes['MapEditorHtml'] = __DIR__ . '/includes/editor/MapEditorHTML.php';
$classes['Maps\BaseElement'] = __DIR__ . '/includes/elements/BaseElement.php';
$classes['Maps\Circle'] = __DIR__ . '/includes/elements/Circle.php';
$classes['Maps\ImageOverlay'] = __DIR__ . '/includes/elements/ImageOverlay.php';
$classes['Maps\Line'] = __DIR__ . '/includes/elements/Line.php';
$classes['Maps\Location'] = __DIR__ . '/includes/elements/Location.php';
$classes['Maps\Polygon'] = __DIR__ . '/includes/elements/Polygon.php';
$classes['Maps\Rectangle'] = __DIR__ . '/includes/elements/Rectangle.php';
$classes['Maps\WmsOverlay'] = __DIR__ . '/includes/elements/WmsOverlay.php';
$classes['Maps\Api\Geocode'] = __DIR__ . '/includes/api/ApiGeocode.php';
$classes['Maps\ServiceParam'] = __DIR__ . '/includes/ServiceParam.php';
$classes['MapsCoordinates'] = __DIR__ . '/includes/parserhooks/Maps_Coordinates.php';
$classes['MapsDisplayMap'] = __DIR__ . '/includes/parserhooks/Maps_DisplayMap.php';
$classes['MapsDistance'] = __DIR__ . '/includes/parserhooks/Maps_Distance.php';
$classes['MapsFinddestination'] = __DIR__ . '/includes/parserhooks/Maps_Finddestination.php';
$classes['MapsGeocode'] = __DIR__ . '/includes/parserhooks/Maps_Geocode.php';
$classes['MapsGeodistance'] = __DIR__ . '/includes/parserhooks/Maps_Geodistance.php';
$classes['MapsMapsDoc'] = __DIR__ . '/includes/parserhooks/Maps_MapsDoc.php';
$classes['Maps\DistanceParser'] = __DIR__ . '/includes/parsers/DistanceParser.php';
$classes['Maps\LineParser'] = __DIR__ . '/includes/parsers/LineParser.php';
$classes['Maps\LocationParser'] = __DIR__ . '/includes/parsers/LocationParser.php';
$classes['Maps\PolygonParser'] = __DIR__ . '/includes/parsers/PolygonParser.php';
$classes['Maps\WmsOverlayParser'] = __DIR__ . '/includes/parsers/WmsOverlayParser.php';
$classes['iBubbleMapElement'] = __DIR__ . '/includes/properties/iBubbleMapElement.php';
$classes['iFillableMapElement'] = __DIR__ . '/includes/properties/iFillableMapElement.php';
$classes['iHoverableMapElement'] = __DIR__ . '/includes/properties/iHoverableMapElement.php';
$classes['iLinkableMapElement'] = __DIR__ . '/includes/properties/iLinkableMapElement.php';
$classes['iStrokableMapElement'] = __DIR__ . '/includes/properties/iStrokableMapElement.php';
$classes['MapsGeonamesGeocoder'] = __DIR__ . '/includes/geocoders/Maps_GeonamesGeocoder.php';
$classes['MapsGoogleGeocoder'] = __DIR__ . '/includes/geocoders/Maps_GoogleGeocoder.php';
$classes['SpecialMapEditor'] = __DIR__ . '/includes/specials/SpecialMapEditor.php';
$classes['Maps\Test\BaseElementTest'] = __DIR__ . '/tests/phpunit/elements/BaseElementTest.php';
$classes['Maps\Test\LineTest'] = __DIR__ . '/tests/phpunit/elements/LineTest.php';
$classes['Maps\Test\RectangleTest'] = __DIR__ . '/tests/phpunit/elements/RectangleTest.php';
$classes['Maps\Test\ParserHookTest'] = __DIR__ . '/tests/phpunit/parserhooks/ParserHookTest.php';
return $classes;