-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,12 @@ | |
use Exception; | ||
use GuzzleHttp\Client as HttpClient; | ||
|
||
/** | ||
* Google Maps PHP Client | ||
* | ||
* @author Nick Tsai <[email protected]> | ||
* @version 1.0.0 | ||
*/ | ||
class Client | ||
{ | ||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,9 @@ | |
/** | ||
* Directions Service | ||
* | ||
* @see https://developers.google.com/maps/documentation/directions/ | ||
* @author Nick Tsai <[email protected]> | ||
* @since 1.0.0 | ||
* @see https://developers.google.com/maps/documentation/directions/ | ||
*/ | ||
class Directions extends Service | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ | |
/** | ||
* Directions Service | ||
* | ||
* @author Nick Tsai <[email protected]> | ||
* @since 1.0.0 | ||
* @see https://developers.google.com/maps/documentation/distance-matrix/ | ||
*/ | ||
class DistanceMatrix extends Service | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ | |
/** | ||
* Directions Service | ||
* | ||
* @author Nick Tsai <[email protected]> | ||
* @since 1.0.0 | ||
* @see https://developers.google.com/maps/documentation/elevation/ | ||
*/ | ||
class Elevation extends Service | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ | |
/** | ||
* Geocoding Service | ||
* | ||
* @author Nick Tsai <[email protected]> | ||
* @since 1.0.0 | ||
* @see https://developers.google.com/maps/documentation/geocoding/ | ||
*/ | ||
class Geocoding extends Service | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ | |
/** | ||
* Directions Service | ||
* | ||
* @author Nick Tsai <[email protected]> | ||
* @since 1.0.0 | ||
* @see https://developers.google.com/maps/documentation/geolocation/ | ||
*/ | ||
class Geolocation extends Service | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,12 @@ | |
|
||
namespace yidas\googleMaps; | ||
|
||
/** | ||
* Google Maps Abstract Service | ||
* | ||
* @author Nick Tsai <[email protected]> | ||
* @since 1.0.0 | ||
*/ | ||
abstract class Service | ||
{ | ||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ | |
/** | ||
* Directions Service | ||
* | ||
* @author Nick Tsai <[email protected]> | ||
* @since 1.0.0 | ||
* @see https://developers.google.com/maps/documentation/timezone/ | ||
*/ | ||
class Timezone extends Service | ||
|