@@ -25,11 +25,11 @@ discard block |
||
25 | 25 | $count = 0; |
26 | 26 | |
27 | 27 | while ($route_id1 == $route_id2) { |
28 | - $route_id2 = $route->getRandomRouteId(0, 20); |
|
28 | + $route_id2 = $route->getRandomRouteId(0, 20); |
|
29 | 29 | |
30 | - $count++; |
|
30 | + $count++; |
|
31 | 31 | |
32 | - if ($count>5) break; // prevent from the infinite cycle, if there are less than 2 routes. |
|
32 | + if ($count>5) break; // prevent from the infinite cycle, if there are less than 2 routes. |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | echo "Route ID 1 -> $route_id1 <br> Route ID 2 -> $route_id2 <br>"; |
@@ -41,21 +41,21 @@ discard block |
||
41 | 41 | $depot = null; |
42 | 42 | |
43 | 43 | foreach ($addresses as $address) { |
44 | - if (isset($address->is_depot)) { |
|
45 | - if ($address->is_depot == true) { |
|
46 | - $depot = $address; |
|
47 | - break; |
|
48 | - } |
|
49 | - } |
|
44 | + if (isset($address->is_depot)) { |
|
45 | + if ($address->is_depot == true) { |
|
46 | + $depot = $address; |
|
47 | + break; |
|
48 | + } |
|
49 | + } |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | // Merge the selected routes |
53 | 53 | $params = array( |
54 | - "route_ids" => $route_id1.",".$route_id2, |
|
55 | - "depot_address" => $depot->address, |
|
56 | - "remove_origin" => false, |
|
57 | - "depot_lat" => $depot->lat, |
|
58 | - "depot_lat" => $depot->lng |
|
54 | + "route_ids" => $route_id1.",".$route_id2, |
|
55 | + "depot_address" => $depot->address, |
|
56 | + "remove_origin" => false, |
|
57 | + "depot_lat" => $depot->lat, |
|
58 | + "depot_lat" => $depot->lng |
|
59 | 59 | ); |
60 | 60 | |
61 | 61 | $result = $route->mergeRoutes($params); |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | namespace Route4Me; |
3 | 3 | |
4 | -$root=realpath(dirname(__FILE__).'/../../'); |
|
4 | +$root = realpath(dirname(__FILE__).'/../../'); |
|
5 | 5 | require $root.'/vendor/autoload.php'; |
6 | 6 | |
7 | 7 | use Route4Me\Route4Me; |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | |
25 | 25 | $count = 0; |
26 | 26 | |
27 | -while ($route_id1 == $route_id2) { |
|
27 | +while ($route_id1==$route_id2) { |
|
28 | 28 | $route_id2 = $route->getRandomRouteId(0, 20); |
29 | 29 | |
30 | 30 | $count++; |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | foreach ($addresses as $address) { |
44 | 44 | if (isset($address->is_depot)) { |
45 | - if ($address->is_depot == true) { |
|
45 | + if ($address->is_depot==true) { |
|
46 | 46 | $depot = $address; |
47 | 47 | break; |
48 | 48 | } |
@@ -29,7 +29,10 @@ |
||
29 | 29 | |
30 | 30 | $count++; |
31 | 31 | |
32 | - if ($count>5) break; // prevent from the infinite cycle, if there are less than 2 routes. |
|
32 | + if ($count>5) { |
|
33 | + break; |
|
34 | + } |
|
35 | + // prevent from the infinite cycle, if there are less than 2 routes. |
|
33 | 36 | } |
34 | 37 | |
35 | 38 | echo "Route ID 1 -> $route_id1 <br> Route ID 2 -> $route_id2 <br>"; |
@@ -11,8 +11,8 @@ discard block |
||
11 | 11 | Route4Me::setApiKey('11111111111111111111111111111111'); |
12 | 12 | |
13 | 13 | $RouteParameters = array( |
14 | - "limit" => 30, |
|
15 | - "offset" => 0 |
|
14 | + "limit" => 30, |
|
15 | + "offset" => 0 |
|
16 | 16 | ); |
17 | 17 | |
18 | 18 | $route = new Route(); |
@@ -21,9 +21,9 @@ discard block |
||
21 | 21 | |
22 | 22 | foreach ($routeResults as $routeResult) |
23 | 23 | { |
24 | - $results = (array)$routeResult; |
|
24 | + $results = (array)$routeResult; |
|
25 | 25 | |
26 | - Route4Me::simplePrint($results); |
|
26 | + Route4Me::simplePrint($results); |
|
27 | 27 | |
28 | - echo "<br>"; |
|
28 | + echo "<br>"; |
|
29 | 29 | } |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | namespace Route4Me; |
3 | 3 | |
4 | -$root=realpath(dirname(__FILE__).'/../../'); |
|
4 | +$root = realpath(dirname(__FILE__).'/../../'); |
|
5 | 5 | require $root.'/vendor/autoload.php'; |
6 | 6 | |
7 | 7 | use Route4Me\Route4Me; |
@@ -32,7 +32,9 @@ |
||
32 | 32 | foreach ($routeResults['addresses'] as $key => $address) { |
33 | 33 | $araddress = (array)$address; |
34 | 34 | |
35 | - if (isset($araddress['route_destination_id'])) echo "route_destination_id=".$araddress['route_destination_id']."<br>"; |
|
35 | + if (isset($araddress['route_destination_id'])) { |
|
36 | + echo "route_destination_id=".$araddress['route_destination_id']."<br>"; |
|
37 | + } |
|
36 | 38 | |
37 | 39 | if (isset($araddress['path_to_next'])) { |
38 | 40 | echo "path_to_next:<br>"; |
@@ -23,23 +23,23 @@ |
||
23 | 23 | |
24 | 24 | // Get a route with the path points |
25 | 25 | $params = array( |
26 | - "route_path_output" => "Points", |
|
27 | - "route_id" => $route_id |
|
26 | + "route_path_output" => "Points", |
|
27 | + "route_id" => $route_id |
|
28 | 28 | ); |
29 | 29 | |
30 | 30 | $routeResults = (array)$route->getRoutePoints($params); |
31 | 31 | |
32 | 32 | if (isset($routeResults['addresses'])) { |
33 | - foreach ($routeResults['addresses'] as $key => $address) { |
|
34 | - $araddress = (array)$address; |
|
33 | + foreach ($routeResults['addresses'] as $key => $address) { |
|
34 | + $araddress = (array)$address; |
|
35 | 35 | |
36 | - if (isset($araddress['route_destination_id'])) echo "route_destination_id=".$araddress['route_destination_id']."<br>"; |
|
36 | + if (isset($araddress['route_destination_id'])) echo "route_destination_id=".$araddress['route_destination_id']."<br>"; |
|
37 | 37 | |
38 | - if (isset($araddress['path_to_next'])) { |
|
39 | - echo "path_to_next:<br>"; |
|
40 | - Route4Me::simplePrint($araddress['path_to_next']); |
|
41 | - } |
|
38 | + if (isset($araddress['path_to_next'])) { |
|
39 | + echo "path_to_next:<br>"; |
|
40 | + Route4Me::simplePrint($araddress['path_to_next']); |
|
41 | + } |
|
42 | 42 | |
43 | - echo "<br>"; |
|
44 | - } |
|
43 | + echo "<br>"; |
|
44 | + } |
|
45 | 45 | } |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | namespace Route4Me; |
3 | 3 | |
4 | -$root=realpath(dirname(__FILE__).'/../../'); |
|
4 | +$root = realpath(dirname(__FILE__).'/../../'); |
|
5 | 5 | require $root.'/vendor/autoload.php'; |
6 | 6 | |
7 | 7 | use Route4Me\Route4Me; |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | // The example refers to the process of searching for the specified text throughout all routes, belonging to the user's account. |
14 | 14 | |
15 | 15 | $RouteParameters = array( |
16 | - "query" => 'Automated' |
|
16 | + "query" => 'Automated' |
|
17 | 17 | ); |
18 | 18 | |
19 | 19 | $route = new Route(); |
@@ -22,11 +22,11 @@ discard block |
||
22 | 22 | |
23 | 23 | foreach ($routeResults as $routeResult) |
24 | 24 | { |
25 | - $results = (array)$routeResult; |
|
25 | + $results = (array)$routeResult; |
|
26 | 26 | |
27 | - if (isset($results['route_id'])) echo "Route ID - > " . $results['route_id'] . "<br>"; |
|
27 | + if (isset($results['route_id'])) echo "Route ID - > " . $results['route_id'] . "<br>"; |
|
28 | 28 | |
29 | - if (isset($results['parameters']->route_name)) echo "Route name - > " . $results['parameters']->route_name . "<br>"; |
|
29 | + if (isset($results['parameters']->route_name)) echo "Route name - > " . $results['parameters']->route_name . "<br>"; |
|
30 | 30 | |
31 | - echo "<br>"; |
|
31 | + echo "<br>"; |
|
32 | 32 | } |
@@ -24,9 +24,13 @@ |
||
24 | 24 | { |
25 | 25 | $results = (array)$routeResult; |
26 | 26 | |
27 | - if (isset($results['route_id'])) echo "Route ID - > " . $results['route_id'] . "<br>"; |
|
27 | + if (isset($results['route_id'])) { |
|
28 | + echo "Route ID - > " . $results['route_id'] . "<br>"; |
|
29 | + } |
|
28 | 30 | |
29 | - if (isset($results['parameters']->route_name)) echo "Route name - > " . $results['parameters']->route_name . "<br>"; |
|
31 | + if (isset($results['parameters']->route_name)) { |
|
32 | + echo "Route name - > " . $results['parameters']->route_name . "<br>"; |
|
33 | + } |
|
30 | 34 | |
31 | 35 | echo "<br>"; |
32 | 36 | } |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | namespace Route4Me; |
3 | 3 | |
4 | -$root=realpath(dirname(__FILE__).'/../../'); |
|
4 | +$root = realpath(dirname(__FILE__).'/../../'); |
|
5 | 5 | require $root.'/vendor/autoload.php'; |
6 | 6 | |
7 | 7 | use Route4Me\Route4Me; |
@@ -24,9 +24,9 @@ discard block |
||
24 | 24 | { |
25 | 25 | $results = (array)$routeResult; |
26 | 26 | |
27 | - if (isset($results['route_id'])) echo "Route ID - > " . $results['route_id'] . "<br>"; |
|
27 | + if (isset($results['route_id'])) echo "Route ID - > ".$results['route_id']."<br>"; |
|
28 | 28 | |
29 | - if (isset($results['parameters']->route_name)) echo "Route name - > " . $results['parameters']->route_name . "<br>"; |
|
29 | + if (isset($results['parameters']->route_name)) echo "Route name - > ".$results['parameters']->route_name."<br>"; |
|
30 | 30 | |
31 | 31 | echo "<br>"; |
32 | 32 | } |
@@ -21,9 +21,9 @@ |
||
21 | 21 | |
22 | 22 | // Share a route with an email |
23 | 23 | $params = array( |
24 | - "route_id" => $route_id, |
|
25 | - "response_format" => "json", |
|
26 | - "recipient_email" => "[email protected]" |
|
24 | + "route_id" => $route_id, |
|
25 | + "response_format" => "json", |
|
26 | + "recipient_email" => "[email protected]" |
|
27 | 27 | ); |
28 | 28 | |
29 | 29 | $result = $route->shareRoute($params); |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | namespace Route4Me; |
3 | 3 | |
4 | -$root=realpath(dirname(__FILE__).'/../../'); |
|
4 | +$root = realpath(dirname(__FILE__).'/../../'); |
|
5 | 5 | require $root.'/vendor/autoload.php'; |
6 | 6 | |
7 | 7 | use Route4Me\Route4Me; |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | // Set the api key in the Route4Me class |
14 | 14 | Route4Me::setApiKey('11111111111111111111111111111111'); |
15 | 15 | |
16 | -$route=new Route(); |
|
16 | +$route = new Route(); |
|
17 | 17 | |
18 | 18 | // Get a random route ID |
19 | 19 | $route_id = $route->getRandomRouteId(0, 10); |
@@ -30,10 +30,10 @@ |
||
30 | 30 | $route->parameters = new \stdClass(); |
31 | 31 | |
32 | 32 | $route->parameters = array( |
33 | - "member_id" => $randomRoute->member_id, |
|
34 | - "optimize" => "Distance", |
|
35 | - "route_max_duration" => "82400", |
|
36 | - "route_name" => "updated " . date('m-d-Y') |
|
33 | + "member_id" => $randomRoute->member_id, |
|
34 | + "optimize" => "Distance", |
|
35 | + "route_max_duration" => "82400", |
|
36 | + "route_name" => "updated " . date('m-d-Y') |
|
37 | 37 | ); |
38 | 38 | |
39 | 39 | $route->httpheaders = 'Content-type: application/json'; |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | namespace Route4Me; |
3 | 3 | |
4 | -$root=realpath(dirname(__FILE__).'/../../'); |
|
4 | +$root = realpath(dirname(__FILE__).'/../../'); |
|
5 | 5 | require $root.'/vendor/autoload.php'; |
6 | 6 | |
7 | 7 | use Route4Me\Route4Me; |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | "member_id" => $randomRoute->member_id, |
34 | 34 | "optimize" => "Distance", |
35 | 35 | "route_max_duration" => "82400", |
36 | - "route_name" => "updated " . date('m-d-Y') |
|
36 | + "route_name" => "updated ".date('m-d-Y') |
|
37 | 37 | ); |
38 | 38 | |
39 | 39 | $route->httpheaders = 'Content-type: application/json'; |
@@ -17,9 +17,9 @@ discard block |
||
17 | 17 | |
18 | 18 | // Select a terriotry with the addresses from the list |
19 | 19 | $params = array( |
20 | - "offset" => 0, |
|
21 | - "limit" => 50, |
|
22 | - "addresses" => 1 |
|
20 | + "offset" => 0, |
|
21 | + "limit" => 50, |
|
22 | + "addresses" => 1 |
|
23 | 23 | ); |
24 | 24 | |
25 | 25 | $results = $territory->getTerritories($params); |
@@ -28,12 +28,12 @@ discard block |
||
28 | 28 | $territory1 = null; |
29 | 29 | |
30 | 30 | foreach ($results as $terr) { |
31 | - if (isset($terr['addresses'])) { |
|
32 | - if (sizeof($terr['addresses'])>0) { |
|
33 | - $territory1 = $terr; |
|
34 | - break; |
|
35 | - } |
|
36 | - } |
|
31 | + if (isset($terr['addresses'])) { |
|
32 | + if (sizeof($terr['addresses'])>0) { |
|
33 | + $territory1 = $terr; |
|
34 | + break; |
|
35 | + } |
|
36 | + } |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | assert(isset($territory1['territory_id']), "Can't retrieve a random territory ID"); |
@@ -43,8 +43,8 @@ discard block |
||
43 | 43 | |
44 | 44 | // Get a territory with the addresses |
45 | 45 | $params = array( |
46 | - "territory_id" => $territory_id, |
|
47 | - "addresses" => 1 |
|
46 | + "territory_id" => $territory_id, |
|
47 | + "addresses" => 1 |
|
48 | 48 | ); |
49 | 49 | |
50 | 50 | $result1 = $territory->getTerritory($params); |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | namespace Route4Me; |
3 | 3 | |
4 | -$root=realpath(dirname(__FILE__).'/../../'); |
|
4 | +$root = realpath(dirname(__FILE__).'/../../'); |
|
5 | 5 | require $root.'/vendor/autoload.php'; |
6 | 6 | |
7 | 7 | use Route4Me\Route4Me; |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | // Set the api key in the Route4Me class |
14 | 14 | Route4Me::setApiKey('11111111111111111111111111111111'); |
15 | 15 | |
16 | -$territory=new Territory(); |
|
16 | +$territory = new Territory(); |
|
17 | 17 | |
18 | 18 | // Select a terriotry with the addresses from the list |
19 | 19 | $params = array( |
@@ -13,13 +13,13 @@ |
||
13 | 13 | $territory = new Territory(); |
14 | 14 | |
15 | 15 | $queryparameters = array ( |
16 | - "offset" => 0, |
|
17 | - "limit" => 20 |
|
16 | + "offset" => 0, |
|
17 | + "limit" => 20 |
|
18 | 18 | ); |
19 | 19 | |
20 | 20 | $response = $territory->getTerritories($queryparameters); |
21 | 21 | |
22 | 22 | foreach ($response as $terr1) { |
23 | 23 | Route4Me::simplePrint($terr1, true); |
24 | - echo "<br>"; |
|
24 | + echo "<br>"; |
|
25 | 25 | } |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | namespace Route4Me; |
3 | 3 | |
4 | -$root=realpath(dirname(__FILE__).'/../../'); |
|
4 | +$root = realpath(dirname(__FILE__).'/../../'); |
|
5 | 5 | require $root.'/vendor/autoload.php'; |
6 | 6 | |
7 | 7 | use Route4Me\Route4Me; |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | |
13 | 13 | $territory = new Territory(); |
14 | 14 | |
15 | -$queryparameters = array ( |
|
15 | +$queryparameters = array( |
|
16 | 16 | "offset" => 0, |
17 | 17 | "limit" => 20 |
18 | 18 | ); |
@@ -26,23 +26,23 @@ discard block |
||
26 | 26 | |
27 | 27 | $addresses = array(); |
28 | 28 | foreach($json as $address) { |
29 | - $addresses[] = Address::fromArray($address); |
|
29 | + $addresses[] = Address::fromArray($address); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | $parameters = RouteParameters::fromArray(array( |
33 | - "algorithm_type" => Algorithmtype::CVRP_TW_SD, |
|
34 | - "route_name" => "Multiple Depot, Multiple Driver, Time Window", |
|
35 | - "route_date" => time() + 24*60*60, |
|
36 | - "route_time" => 60 * 60 * 7, |
|
37 | - "rt" => TRUE, |
|
38 | - "distance_unit" => DistanceUnit::MILES, |
|
39 | - "device_type" => DeviceType::WEB, |
|
40 | - "optimize" => OptimizationType::TIME, |
|
41 | - "metric" => Metric::GEODESIC, |
|
42 | - "route_max_duration" => 86400 * 3, |
|
43 | - "travel_mode" => TravelMode::DRIVING, |
|
44 | - "vehicle_capacity" => 99, |
|
45 | - "vehicle_max_distance_mi" => 99999 |
|
33 | + "algorithm_type" => Algorithmtype::CVRP_TW_SD, |
|
34 | + "route_name" => "Multiple Depot, Multiple Driver, Time Window", |
|
35 | + "route_date" => time() + 24*60*60, |
|
36 | + "route_time" => 60 * 60 * 7, |
|
37 | + "rt" => TRUE, |
|
38 | + "distance_unit" => DistanceUnit::MILES, |
|
39 | + "device_type" => DeviceType::WEB, |
|
40 | + "optimize" => OptimizationType::TIME, |
|
41 | + "metric" => Metric::GEODESIC, |
|
42 | + "route_max_duration" => 86400 * 3, |
|
43 | + "travel_mode" => TravelMode::DRIVING, |
|
44 | + "vehicle_capacity" => 99, |
|
45 | + "vehicle_max_distance_mi" => 99999 |
|
46 | 46 | )); |
47 | 47 | |
48 | 48 | $optimizationParams = new OptimizationProblemParams; |
@@ -52,12 +52,12 @@ discard block |
||
52 | 52 | $problem = OptimizationProblem::optimize($optimizationParams); |
53 | 53 | |
54 | 54 | foreach ((array)$problem as $key => $value) { |
55 | - if (is_string($value)) { |
|
56 | - echo $key." --> ".$value."<br>"; |
|
57 | - } else { |
|
58 | - echo "************ $key ************* <br>"; |
|
59 | - Route4Me::simplePrint((array)$value, true); |
|
60 | - echo "******************************* <br>"; |
|
61 | - } |
|
55 | + if (is_string($value)) { |
|
56 | + echo $key." --> ".$value."<br>"; |
|
57 | + } else { |
|
58 | + echo "************ $key ************* <br>"; |
|
59 | + Route4Me::simplePrint((array)$value, true); |
|
60 | + echo "******************************* <br>"; |
|
61 | + } |
|
62 | 62 | } |
63 | 63 |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | namespace Route4Me; |
3 | 3 | |
4 | -$root=realpath(dirname(__FILE__).'/../'); |
|
4 | +$root = realpath(dirname(__FILE__).'/../'); |
|
5 | 5 | require $root.'/vendor/autoload.php'; |
6 | 6 | |
7 | 7 | use Route4Me\Route4Me; |
@@ -25,14 +25,14 @@ discard block |
||
25 | 25 | $json = json_decode(file_get_contents('./addresses.json'), true); |
26 | 26 | |
27 | 27 | $addresses = array(); |
28 | -foreach($json as $address) { |
|
28 | +foreach ($json as $address) { |
|
29 | 29 | $addresses[] = Address::fromArray($address); |
30 | 30 | } |
31 | 31 | |
32 | 32 | $parameters = RouteParameters::fromArray(array( |
33 | 33 | "algorithm_type" => Algorithmtype::CVRP_TW_SD, |
34 | 34 | "route_name" => "Multiple Depot, Multiple Driver, Time Window", |
35 | - "route_date" => time() + 24*60*60, |
|
35 | + "route_date" => time() + 24 * 60 * 60, |
|
36 | 36 | "route_time" => 60 * 60 * 7, |
37 | 37 | "rt" => TRUE, |
38 | 38 | "distance_unit" => DistanceUnit::MILES, |