1 : <?php
2 : /**
3 : * This file is part of NoiseLabs-PHP-ToolKit
4 : *
5 : * NoiseLabs-PHP-ToolKit is free software; you can redistribute it
6 : * and/or modify it under the terms of the GNU Lesser General Public
7 : * License as published by the Free Software Foundation; either
8 : * version 3 of the License, or (at your option) any later version.
9 : *
10 : * NoiseLabs-PHP-ToolKit is distributed in the hope that it will be
11 : * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
12 : * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 : * Lesser General Public License for more details.
14 : *
15 : * You should have received a copy of the GNU Lesser General Public
16 : * License along with NoiseLabs-PHP-ToolKit; if not, see
17 : * <http://www.gnu.org/licenses/>.
18 : *
19 : * Copyright (C) 2011 Vítor Brandão
20 : *
21 : * @category NoiseLabs
22 : * @package GoogleAPI
23 : * @author Vítor Brandão <noisebleed@noiselabs.org>
24 : * @copyright (C) 2011 Vítor Brandão <noisebleed@noiselabs.org>
25 : * @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL-3
26 : * @link http://www.noiselabs.org
27 : * @since 0.1.0
28 : */
29 :
30 : namespace NoiseLabs\ToolKit\GoogleAPI\Maps;
31 :
32 : use NoiseLabs\ToolKit\GoogleAPI\Maps\BaseMap;
33 :
34 : class StaticMap extends BaseMap
35 0 : {
36 : public function render()
37 : {
38 : //
39 0 : }
40 : }
41 :
|