Releases: alexpechkarev/google-maps
Releases · alexpechkarev/google-maps
Supporting Laravel 5.7
Adding support for Laravel 5.7
Supporting Laravel 5.6
Adding support for Laravel 5.6
Supporting Laravel 5.5
Adding support for Laravel 5.5
Supporting Laravel 5.4
Adding support for Laravel 5.4
Supporting Laravel 5.3
Adding support for Laravel 5.3
Supporting Laravel 5.2
Adding support for Laravel 5.2
Supporting Laravel 5.1
Adding support for Laravel 5.1
Fix logic issue with endpoints not being checked properly
Merge pull request #44 from NoelDavies/hotfix/endpoint-logic-bug Fix logic issue with endpoints not being checked properly
Fix logic issue with endpoints not being checked properly
1.0.9 Update composer.json
Directions Service to use optimize:true
Directions service to optimize the provided route by rearranging the waypoints in a more efficient order, using optimize:true
$d = \GoogleMaps::load('directions')
->setParam([
'origin' => 'Sao Paulo, SP',
'destination' => 'Sao Paulo, SP',
'mode' => 'driving',
'waypoints' => ['optimize:true','Rua Indico, Sao Bernardo do Campo,SP', 'Santos,SP', 'Rua Aurora, Sao Bernardo do Campo,SP', 'Santos,SP', 'Sorocaba,SP'],
'units' => 'metric',
'region' => 'BR',
'departure_time' => 'now',
])
->get();