Index: trunk/extensions/Maps/Services/GoogleMaps3/Maps_GoogleMaps3.php |
— | — | @@ -14,14 +14,22 @@ |
15 | 15 | } |
16 | 16 | |
17 | 17 | /** |
18 | | - * TODO |
| 18 | + * Class holding information and functionallity specific to Google Maps v3. |
| 19 | + * This infomation and features can be used by any mapping feature. |
19 | 20 | * |
| 21 | + * @since 0.1 |
| 22 | + * |
20 | 23 | * @ingroup MapsGoogleMaps3 |
21 | 24 | * |
22 | 25 | * @author Jeroen De Dauw |
23 | 26 | */ |
24 | 27 | class MapsGoogleMaps3 extends MapsMappingService { |
25 | 28 | |
| 29 | + /** |
| 30 | + * Constructor |
| 31 | + * |
| 32 | + * @since 0.6.3 |
| 33 | + */ |
26 | 34 | function __construct() { |
27 | 35 | parent::__construct( |
28 | 36 | 'googlemaps3', |
Index: trunk/extensions/Maps/Services/OpenLayers/Maps_OpenLayers.php |
— | — | @@ -14,14 +14,22 @@ |
15 | 15 | } |
16 | 16 | |
17 | 17 | /** |
18 | | - * TODO |
| 18 | + * Class holding information and functionallity specific to OpenLayers. |
| 19 | + * This infomation and features can be used by any mapping feature. |
19 | 20 | * |
| 21 | + * @since 0.1 |
| 22 | + * |
20 | 23 | * @ingroup MapsOpenLayers |
21 | 24 | * |
22 | 25 | * @author Jeroen De Dauw |
23 | 26 | */ |
24 | 27 | class MapsOpenLayers extends MapsMappingService { |
25 | 28 | |
| 29 | + /** |
| 30 | + * Constructor |
| 31 | + * |
| 32 | + * @since 0.6.3 |
| 33 | + */ |
26 | 34 | function __construct() { |
27 | 35 | parent::__construct( |
28 | 36 | 'openlayers', |
Index: trunk/extensions/Maps/Services/GoogleMaps/Maps_GoogleMaps.php |
— | — | @@ -14,14 +14,22 @@ |
15 | 15 | } |
16 | 16 | |
17 | 17 | /** |
18 | | - * TODO |
| 18 | + * Class holding information and functionallity specific to Google Maps v2. |
| 19 | + * This infomation and features can be used by any mapping feature. |
19 | 20 | * |
| 21 | + * @since 0.1 |
| 22 | + * |
20 | 23 | * @ingroup MapsGoogleMaps |
21 | 24 | * |
22 | 25 | * @author Jeroen De Dauw |
23 | 26 | */ |
24 | 27 | class MapsGoogleMaps extends MapsMappingService { |
25 | 28 | |
| 29 | + /** |
| 30 | + * Constructor |
| 31 | + * |
| 32 | + * @since 0.6.3 |
| 33 | + */ |
26 | 34 | function __construct() { |
27 | 35 | parent::__construct( |
28 | 36 | 'googlemaps2', |