├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── Amap.php ├── Contracts └── GatewayInterface.php ├── Exceptions ├── CannotParseResponseException.php ├── Exception.php ├── HttpException.php └── InvalidArgumentException.php ├── Gateways ├── Autograsp │ └── AutograspGateway.php ├── Convert │ └── ConvertGateway.php ├── Direction │ ├── BicyclingGateway.php │ ├── BusGateway.php │ ├── DrivingGateway.php │ └── WalkingGateway.php ├── Distance │ └── DistanceGateway.php ├── District │ └── DistrictGateway.php ├── Gateway.php ├── Geofence │ ├── CreateGateway.php │ ├── DeleteGateway.php │ ├── EnableGateway.php │ ├── ShowGateway.php │ ├── StatusGateway.php │ └── UpdateGateway.php ├── Georegeo │ ├── GeoGateway.php │ └── RegeoGateway.php ├── Inputtips │ └── InputtipsGateway.php ├── Ip │ └── IpGateway.php ├── Search │ ├── AroundGateway.php │ ├── IdGateway.php │ ├── PolygonGateway.php │ └── TextGateway.php ├── Staticmaps │ └── StaticmapsGateway.php ├── Trafficstatus │ ├── CircleGateway.php │ ├── RectangleGateway.php │ └── RoadGateway.php └── Weather │ └── WeatherGateway.php ├── Results ├── AutoGraspResult.php ├── BicyclingResult.php ├── BusResult.php ├── ConvertResult.php ├── DistanceResult.php ├── DistrictResult.php ├── DrivingResult.php ├── GenfenceEnableResult.php ├── GenfenceStatusResult.php ├── GenfenceUpdateResult.php ├── GeoResult.php ├── GeofenceCreateResult.php ├── GeofenceDeleteResult.php ├── GeofenceShowResult.php ├── InputTipsResult.php ├── IpResult.php ├── RegeoResult.php ├── SearchIdResult.php ├── SearchResult.php ├── TrafficStatusResult.php ├── WalkingResult.php └── WeatherResult.php ├── Support ├── ClassmapConvert.php ├── Config.php ├── Result.php └── Validator.php └── Traits ├── HasDistance.php ├── HasErrCode.php ├── HasHttpRequest.php ├── HasSuggestion.php └── HasTaxiCost.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/composer.json -------------------------------------------------------------------------------- /src/Amap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Amap.php -------------------------------------------------------------------------------- /src/Contracts/GatewayInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Contracts/GatewayInterface.php -------------------------------------------------------------------------------- /src/Exceptions/CannotParseResponseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Exceptions/CannotParseResponseException.php -------------------------------------------------------------------------------- /src/Exceptions/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Exceptions/Exception.php -------------------------------------------------------------------------------- /src/Exceptions/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Exceptions/HttpException.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Exceptions/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Gateways/Autograsp/AutograspGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Autograsp/AutograspGateway.php -------------------------------------------------------------------------------- /src/Gateways/Convert/ConvertGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Convert/ConvertGateway.php -------------------------------------------------------------------------------- /src/Gateways/Direction/BicyclingGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Direction/BicyclingGateway.php -------------------------------------------------------------------------------- /src/Gateways/Direction/BusGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Direction/BusGateway.php -------------------------------------------------------------------------------- /src/Gateways/Direction/DrivingGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Direction/DrivingGateway.php -------------------------------------------------------------------------------- /src/Gateways/Direction/WalkingGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Direction/WalkingGateway.php -------------------------------------------------------------------------------- /src/Gateways/Distance/DistanceGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Distance/DistanceGateway.php -------------------------------------------------------------------------------- /src/Gateways/District/DistrictGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/District/DistrictGateway.php -------------------------------------------------------------------------------- /src/Gateways/Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Gateway.php -------------------------------------------------------------------------------- /src/Gateways/Geofence/CreateGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Geofence/CreateGateway.php -------------------------------------------------------------------------------- /src/Gateways/Geofence/DeleteGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Geofence/DeleteGateway.php -------------------------------------------------------------------------------- /src/Gateways/Geofence/EnableGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Geofence/EnableGateway.php -------------------------------------------------------------------------------- /src/Gateways/Geofence/ShowGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Geofence/ShowGateway.php -------------------------------------------------------------------------------- /src/Gateways/Geofence/StatusGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Geofence/StatusGateway.php -------------------------------------------------------------------------------- /src/Gateways/Geofence/UpdateGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Geofence/UpdateGateway.php -------------------------------------------------------------------------------- /src/Gateways/Georegeo/GeoGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Georegeo/GeoGateway.php -------------------------------------------------------------------------------- /src/Gateways/Georegeo/RegeoGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Georegeo/RegeoGateway.php -------------------------------------------------------------------------------- /src/Gateways/Inputtips/InputtipsGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Inputtips/InputtipsGateway.php -------------------------------------------------------------------------------- /src/Gateways/Ip/IpGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Ip/IpGateway.php -------------------------------------------------------------------------------- /src/Gateways/Search/AroundGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Search/AroundGateway.php -------------------------------------------------------------------------------- /src/Gateways/Search/IdGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Search/IdGateway.php -------------------------------------------------------------------------------- /src/Gateways/Search/PolygonGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Search/PolygonGateway.php -------------------------------------------------------------------------------- /src/Gateways/Search/TextGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Search/TextGateway.php -------------------------------------------------------------------------------- /src/Gateways/Staticmaps/StaticmapsGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Staticmaps/StaticmapsGateway.php -------------------------------------------------------------------------------- /src/Gateways/Trafficstatus/CircleGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Trafficstatus/CircleGateway.php -------------------------------------------------------------------------------- /src/Gateways/Trafficstatus/RectangleGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Trafficstatus/RectangleGateway.php -------------------------------------------------------------------------------- /src/Gateways/Trafficstatus/RoadGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Trafficstatus/RoadGateway.php -------------------------------------------------------------------------------- /src/Gateways/Weather/WeatherGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Gateways/Weather/WeatherGateway.php -------------------------------------------------------------------------------- /src/Results/AutoGraspResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/AutoGraspResult.php -------------------------------------------------------------------------------- /src/Results/BicyclingResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/BicyclingResult.php -------------------------------------------------------------------------------- /src/Results/BusResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/BusResult.php -------------------------------------------------------------------------------- /src/Results/ConvertResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/ConvertResult.php -------------------------------------------------------------------------------- /src/Results/DistanceResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/DistanceResult.php -------------------------------------------------------------------------------- /src/Results/DistrictResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/DistrictResult.php -------------------------------------------------------------------------------- /src/Results/DrivingResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/DrivingResult.php -------------------------------------------------------------------------------- /src/Results/GenfenceEnableResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/GenfenceEnableResult.php -------------------------------------------------------------------------------- /src/Results/GenfenceStatusResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/GenfenceStatusResult.php -------------------------------------------------------------------------------- /src/Results/GenfenceUpdateResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/GenfenceUpdateResult.php -------------------------------------------------------------------------------- /src/Results/GeoResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/GeoResult.php -------------------------------------------------------------------------------- /src/Results/GeofenceCreateResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/GeofenceCreateResult.php -------------------------------------------------------------------------------- /src/Results/GeofenceDeleteResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/GeofenceDeleteResult.php -------------------------------------------------------------------------------- /src/Results/GeofenceShowResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/GeofenceShowResult.php -------------------------------------------------------------------------------- /src/Results/InputTipsResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/InputTipsResult.php -------------------------------------------------------------------------------- /src/Results/IpResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/IpResult.php -------------------------------------------------------------------------------- /src/Results/RegeoResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/RegeoResult.php -------------------------------------------------------------------------------- /src/Results/SearchIdResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/SearchIdResult.php -------------------------------------------------------------------------------- /src/Results/SearchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/SearchResult.php -------------------------------------------------------------------------------- /src/Results/TrafficStatusResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/TrafficStatusResult.php -------------------------------------------------------------------------------- /src/Results/WalkingResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/WalkingResult.php -------------------------------------------------------------------------------- /src/Results/WeatherResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Results/WeatherResult.php -------------------------------------------------------------------------------- /src/Support/ClassmapConvert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Support/ClassmapConvert.php -------------------------------------------------------------------------------- /src/Support/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Support/Config.php -------------------------------------------------------------------------------- /src/Support/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Support/Result.php -------------------------------------------------------------------------------- /src/Support/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Support/Validator.php -------------------------------------------------------------------------------- /src/Traits/HasDistance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Traits/HasDistance.php -------------------------------------------------------------------------------- /src/Traits/HasErrCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Traits/HasErrCode.php -------------------------------------------------------------------------------- /src/Traits/HasHttpRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Traits/HasHttpRequest.php -------------------------------------------------------------------------------- /src/Traits/HasSuggestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Traits/HasSuggestion.php -------------------------------------------------------------------------------- /src/Traits/HasTaxiCost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxrw/amap/HEAD/src/Traits/HasTaxiCost.php --------------------------------------------------------------------------------