Skip to content

Releases: alexpechkarev/google-maps

Supporting Laravel 5.7

21 Sep 15:16
Compare
Choose a tag to compare

Adding support for Laravel 5.7

Supporting Laravel 5.6

21 Sep 14:59
Compare
Choose a tag to compare

Adding support for Laravel 5.6

Supporting Laravel 5.5

21 Sep 14:53
Compare
Choose a tag to compare

Adding support for Laravel 5.5

Supporting Laravel 5.4

21 Sep 14:46
Compare
Choose a tag to compare

Adding support for Laravel 5.4

Supporting Laravel 5.3

21 Sep 14:40
Compare
Choose a tag to compare

Adding support for Laravel 5.3

Supporting Laravel 5.2

21 Sep 14:33
Compare
Choose a tag to compare

Adding support for Laravel 5.2

Supporting Laravel 5.1

21 Sep 14:27
Compare
Choose a tag to compare

Adding support for Laravel 5.1

Fix logic issue with endpoints not being checked properly

09 Jan 18:19
a5a3268
Compare
Choose a tag to compare
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

09 Jan 18:25
fa6b843
Compare
Choose a tag to compare

Directions Service to use optimize:true

29 Aug 14:00
Compare
Choose a tag to compare

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();