├── Google ├── Maps.php └── Maps │ ├── Bounds.php │ ├── Clusterer.php │ ├── Clusterer │ ├── Distance.php │ └── None.php │ ├── Control.php │ ├── Control │ ├── Pan.php │ └── Zoom.php │ ├── Coordinate.php │ ├── Infowindow.php │ ├── Location.php │ ├── Marker.php │ ├── Marker │ └── Cluster.php │ ├── Math.php │ ├── Mercator.php │ ├── Overload.php │ ├── Path.php │ ├── Point.php │ └── Static.php ├── README ├── cities.kml ├── cluster.html ├── controls.html ├── css ├── controls.css └── infowindow.css ├── kml.html └── tests ├── 01_lattoy.phpt ├── 02_lontox.phpt ├── 03_xtolon.phpt ├── 04_ytolat.phpt ├── 05_bounds.phpt ├── 06_point.phpt ├── 07_coordinate.phpt ├── 08_maps_factory.phpt ├── 09_bounds_contains.phpt ├── 10_marker.phpt ├── 11_maps_setcenter.phpt └── skipif.php /Google/Maps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps.php -------------------------------------------------------------------------------- /Google/Maps/Bounds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Bounds.php -------------------------------------------------------------------------------- /Google/Maps/Clusterer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Clusterer.php -------------------------------------------------------------------------------- /Google/Maps/Clusterer/Distance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Clusterer/Distance.php -------------------------------------------------------------------------------- /Google/Maps/Clusterer/None.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Clusterer/None.php -------------------------------------------------------------------------------- /Google/Maps/Control.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Control.php -------------------------------------------------------------------------------- /Google/Maps/Control/Pan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Control/Pan.php -------------------------------------------------------------------------------- /Google/Maps/Control/Zoom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Control/Zoom.php -------------------------------------------------------------------------------- /Google/Maps/Coordinate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Coordinate.php -------------------------------------------------------------------------------- /Google/Maps/Infowindow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Infowindow.php -------------------------------------------------------------------------------- /Google/Maps/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Location.php -------------------------------------------------------------------------------- /Google/Maps/Marker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Marker.php -------------------------------------------------------------------------------- /Google/Maps/Marker/Cluster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Marker/Cluster.php -------------------------------------------------------------------------------- /Google/Maps/Math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Math.php -------------------------------------------------------------------------------- /Google/Maps/Mercator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Mercator.php -------------------------------------------------------------------------------- /Google/Maps/Overload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Overload.php -------------------------------------------------------------------------------- /Google/Maps/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Path.php -------------------------------------------------------------------------------- /Google/Maps/Point.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Point.php -------------------------------------------------------------------------------- /Google/Maps/Static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/Google/Maps/Static.php -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/README -------------------------------------------------------------------------------- /cities.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/cities.kml -------------------------------------------------------------------------------- /cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/cluster.html -------------------------------------------------------------------------------- /controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/controls.html -------------------------------------------------------------------------------- /css/controls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/css/controls.css -------------------------------------------------------------------------------- /css/infowindow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/css/infowindow.css -------------------------------------------------------------------------------- /kml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/kml.html -------------------------------------------------------------------------------- /tests/01_lattoy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/tests/01_lattoy.phpt -------------------------------------------------------------------------------- /tests/02_lontox.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/tests/02_lontox.phpt -------------------------------------------------------------------------------- /tests/03_xtolon.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/tests/03_xtolon.phpt -------------------------------------------------------------------------------- /tests/04_ytolat.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/tests/04_ytolat.phpt -------------------------------------------------------------------------------- /tests/05_bounds.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/tests/05_bounds.phpt -------------------------------------------------------------------------------- /tests/06_point.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/tests/06_point.phpt -------------------------------------------------------------------------------- /tests/07_coordinate.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/tests/07_coordinate.phpt -------------------------------------------------------------------------------- /tests/08_maps_factory.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/tests/08_maps_factory.phpt -------------------------------------------------------------------------------- /tests/09_bounds_contains.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/tests/09_bounds_contains.phpt -------------------------------------------------------------------------------- /tests/10_marker.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/tests/10_marker.phpt -------------------------------------------------------------------------------- /tests/11_maps_setcenter.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/tests/11_maps_setcenter.phpt -------------------------------------------------------------------------------- /tests/skipif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/php_google_maps/HEAD/tests/skipif.php --------------------------------------------------------------------------------