@@ -17,9 +17,9 @@ |
||
17 | 17 | $route_id = $route->getRandomRouteId(0, 10); |
18 | 18 | |
19 | 19 | $postParameters = ActivityParameters::fromArray(array( |
20 | - "activity_type" => "user_message", |
|
21 | - "activity_message" => "Hello - php!", |
|
22 | - "route_id" => $route_id |
|
20 | + "activity_type" => "user_message", |
|
21 | + "activity_message" => "Hello - php!", |
|
22 | + "route_id" => $route_id |
|
23 | 23 | )); |
24 | 24 | |
25 | 25 | $activities = new ActivityParameters(); |
@@ -27,10 +27,10 @@ discard block |
||
27 | 27 | assert(!is_null($addressRand), "Can't retrieve random address"); |
28 | 28 | |
29 | 29 | if (isset($addressRand['is_depot'])) { |
30 | - if ($addressRand['is_depot']) { |
|
31 | - echo "This address is depot!.. Try again."; |
|
32 | - return; |
|
33 | - } |
|
30 | + if ($addressRand['is_depot']) { |
|
31 | + echo "This address is depot!.. Try again."; |
|
32 | + return; |
|
33 | + } |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | $route_destination_id = $addressRand['route_destination_id']; |
@@ -39,8 +39,8 @@ discard block |
||
39 | 39 | |
40 | 40 | // Remove the destination from the optimization |
41 | 41 | $params = array ( |
42 | - "optimization_problem_id" => $optimization_problem_id, |
|
43 | - "route_destination_id" => $route_destination_id |
|
42 | + "optimization_problem_id" => $optimization_problem_id, |
|
43 | + "route_destination_id" => $route_destination_id |
|
44 | 44 | ); |
45 | 45 | |
46 | 46 | $result = $optimization->removeAddress($params); |
@@ -38,7 +38,7 @@ |
||
38 | 38 | assert(!is_null($route_destination_id), "Can't retrieve random address"); |
39 | 39 | |
40 | 40 | // Remove the destination from the optimization |
41 | -$params = array ( |
|
41 | +$params = array( |
|
42 | 42 | "optimization_problem_id" => $optimization_problem_id, |
43 | 43 | "route_destination_id" => $route_destination_id |
44 | 44 | ); |
@@ -30,19 +30,19 @@ |
||
30 | 30 | $addresses = array(); |
31 | 31 | |
32 | 32 | $address1 = (array)Address::fromArray(array( |
33 | - 'address' => '717 5th Ave New York, NY 10021', |
|
34 | - 'alias' => 'Giorgio Armani', |
|
35 | - 'lat' => 40.7669692, |
|
36 | - 'lng' => 73.9693864, |
|
37 | - 'time' => 0 |
|
33 | + 'address' => '717 5th Ave New York, NY 10021', |
|
34 | + 'alias' => 'Giorgio Armani', |
|
35 | + 'lat' => 40.7669692, |
|
36 | + 'lng' => 73.9693864, |
|
37 | + 'time' => 0 |
|
38 | 38 | )); |
39 | 39 | |
40 | 40 | $addresses[0] = $address1; |
41 | 41 | |
42 | 42 | $OptimizationParameters = (array)OptimizationProblem::fromArray(array( |
43 | - "optimization_problem_id" => $optimization_problem_id, |
|
44 | - "addresses" => $addresses, |
|
45 | - "reoptimize" => 1, |
|
43 | + "optimization_problem_id" => $optimization_problem_id, |
|
44 | + "addresses" => $addresses, |
|
45 | + "reoptimize" => 1, |
|
46 | 46 | )); |
47 | 47 | |
48 | 48 | $optimizationproblem = new OptimizationProblem(); |
@@ -25,20 +25,20 @@ |
||
25 | 25 | $addresses = array(); |
26 | 26 | |
27 | 27 | $params = array( |
28 | - "route_id" => $routeId, |
|
29 | - "addresses" => array( |
|
30 | - "0" => array( |
|
31 | - "address" => "Cabo Rojo, Cabo Rojo 00623, Puerto Rico", |
|
32 | - "alias" => "", |
|
33 | - "lat" => 18.086627, |
|
34 | - "lng" => -67.145735, |
|
35 | - "curbside_lat" => 18.086627, |
|
36 | - "curbside_lng" => -67.145735, |
|
37 | - "is_departed" => false, |
|
38 | - "is_visited" => false |
|
39 | - ) |
|
40 | - ), |
|
41 | - "optimal_position" => true |
|
28 | + "route_id" => $routeId, |
|
29 | + "addresses" => array( |
|
30 | + "0" => array( |
|
31 | + "address" => "Cabo Rojo, Cabo Rojo 00623, Puerto Rico", |
|
32 | + "alias" => "", |
|
33 | + "lat" => 18.086627, |
|
34 | + "lng" => -67.145735, |
|
35 | + "curbside_lat" => 18.086627, |
|
36 | + "curbside_lng" => -67.145735, |
|
37 | + "is_departed" => false, |
|
38 | + "is_visited" => false |
|
39 | + ) |
|
40 | + ), |
|
41 | + "optimal_position" => true |
|
42 | 42 | ); |
43 | 43 | |
44 | 44 | $route1 = new Route(); |
@@ -52,5 +52,5 @@ |
||
52 | 52 | assert(isset($result->addresses), "Can't insert a destination into the route"); |
53 | 53 | |
54 | 54 | foreach ($result->addresses as $address) { |
55 | - echo "Address -> ".$address->address , ", Sequence number -> ".$address->sequence_no."<br>"; |
|
55 | + echo "Address -> ".$address->address, ", Sequence number -> ".$address->sequence_no."<br>"; |
|
56 | 56 | } |
@@ -26,16 +26,16 @@ |
||
26 | 26 | // Set GPS postion to the selected route |
27 | 27 | // Set right member_id corresponding to the API key |
28 | 28 | $params = TrackSetParams::fromArray(array( |
29 | - 'format' => Format::CSV, |
|
30 | - 'route_id' => $routeId, |
|
31 | - 'member_id' => 1, |
|
32 | - 'course' => 1, |
|
33 | - 'speed' => 120, |
|
34 | - 'lat' => 41.8927521, |
|
35 | - 'lng' => -109.0803888, |
|
36 | - 'device_type' => 'android_phone', |
|
37 | - 'device_guid' => 'qweqweqwe', |
|
38 | - 'device_timestamp' => date('Y-m-d H:i:s', strtotime('-1 day')) |
|
29 | + 'format' => Format::CSV, |
|
30 | + 'route_id' => $routeId, |
|
31 | + 'member_id' => 1, |
|
32 | + 'course' => 1, |
|
33 | + 'speed' => 120, |
|
34 | + 'lat' => 41.8927521, |
|
35 | + 'lng' => -109.0803888, |
|
36 | + 'device_type' => 'android_phone', |
|
37 | + 'device_guid' => 'qweqweqwe', |
|
38 | + 'device_timestamp' => date('Y-m-d H:i:s', strtotime('-1 day')) |
|
39 | 39 | )); |
40 | 40 | |
41 | 41 | $status = Track::set($params); |
@@ -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\Enum\DeviceType; |
@@ -57,9 +57,10 @@ |
||
57 | 57 | |
58 | 58 | $result = $route->GetLastLocation($params); |
59 | 59 | |
60 | -if (isset($result->tracking_history)) |
|
61 | -foreach ($result->tracking_history as $history) { |
|
60 | +if (isset($result->tracking_history)) { |
|
61 | + foreach ($result->tracking_history as $history) { |
|
62 | 62 | echo "Speed --> ".$history['s']."<br>"; |
63 | +} |
|
63 | 64 | echo "course --> ".$history['d']."<br>"; |
64 | 65 | echo "Timestamp --> ".$history['ts_friendly']."<br>"; |
65 | 66 | echo "Latitude --> ".$history['lt']."<br>"; |
@@ -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\Enum\DeviceType; |
@@ -27,16 +27,16 @@ discard block |
||
27 | 27 | // Set GPS postion to the selected route |
28 | 28 | // Set right member_id corresponding to the API key |
29 | 29 | $params = TrackSetParams::fromArray(array( |
30 | - 'format' => Format::SERIALIZED, |
|
31 | - 'route_id' => $routeId, |
|
32 | - 'member_id' => 105323, |
|
33 | - 'course' => 3, |
|
34 | - 'speed' => 100, |
|
35 | - 'lat' => 41.8927521, |
|
36 | - 'lng' => -109.0803888, |
|
37 | - 'device_type' => DeviceType::IPHONE, |
|
38 | - 'device_guid' => 'qweqweqwe', |
|
39 | - 'device_timestamp' => date('Y-m-d H:i:s') |
|
30 | + 'format' => Format::SERIALIZED, |
|
31 | + 'route_id' => $routeId, |
|
32 | + 'member_id' => 105323, |
|
33 | + 'course' => 3, |
|
34 | + 'speed' => 100, |
|
35 | + 'lat' => 41.8927521, |
|
36 | + 'lng' => -109.0803888, |
|
37 | + 'device_type' => DeviceType::IPHONE, |
|
38 | + 'device_guid' => 'qweqweqwe', |
|
39 | + 'device_timestamp' => date('Y-m-d H:i:s') |
|
40 | 40 | )); |
41 | 41 | |
42 | 42 | $status = Track::set($params); |
@@ -46,23 +46,23 @@ discard block |
||
46 | 46 | assert($status['status'], "Can't send GPS position to the selected route"); |
47 | 47 | |
48 | 48 | if (!$status) { |
49 | - echo "Setting of GPS position failed"; |
|
50 | - return; |
|
49 | + echo "Setting of GPS position failed"; |
|
50 | + return; |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | $params = array( |
54 | - 'route_id' => $routeId, |
|
55 | - 'device_tracking_history' => '1' |
|
54 | + 'route_id' => $routeId, |
|
55 | + 'device_tracking_history' => '1' |
|
56 | 56 | ); |
57 | 57 | |
58 | 58 | $result = $route->GetLastLocation($params); |
59 | 59 | |
60 | 60 | if (isset($result->tracking_history)) |
61 | 61 | foreach ($result->tracking_history as $history) { |
62 | - echo "Speed --> ".$history['s']."<br>"; |
|
63 | - echo "course --> ".$history['d']."<br>"; |
|
64 | - echo "Timestamp --> ".$history['ts_friendly']."<br>"; |
|
65 | - echo "Latitude --> ".$history['lt']."<br>"; |
|
66 | - echo "Longitude --> ".$history['lg']."<br>"; |
|
67 | - echo "========================================<br><br>"; |
|
62 | + echo "Speed --> ".$history['s']."<br>"; |
|
63 | + echo "course --> ".$history['d']."<br>"; |
|
64 | + echo "Timestamp --> ".$history['ts_friendly']."<br>"; |
|
65 | + echo "Latitude --> ".$history['lt']."<br>"; |
|
66 | + echo "Longitude --> ".$history['lg']."<br>"; |
|
67 | + echo "========================================<br><br>"; |
|
68 | 68 | } |
@@ -30,15 +30,15 @@ discard block |
||
30 | 30 | |
31 | 31 | foreach ($addresses as $addr1) { |
32 | 32 | if (!is_null($addr1->tracking_number)) { |
33 | - $trackingNumber = $addr1->tracking_number; |
|
34 | - break; |
|
33 | + $trackingNumber = $addr1->tracking_number; |
|
34 | + break; |
|
35 | 35 | } |
36 | 36 | } |
37 | 37 | |
38 | 38 | assert(!is_null($trackingNumber), "Can't select a tracking number"); |
39 | 39 | |
40 | 40 | $params = array( |
41 | - 'tracking' => $trackingNumber |
|
41 | + 'tracking' => $trackingNumber |
|
42 | 42 | ); |
43 | 43 | |
44 | 44 | $route = new Route(); |
@@ -47,9 +47,9 @@ discard block |
||
47 | 47 | |
48 | 48 | foreach ($result as $key => $value) |
49 | 49 | { |
50 | - if (is_array($value)) { |
|
51 | - Route4Me::simplePrint($value, true); |
|
52 | - } else { |
|
53 | - echo "$key => $value <br>"; |
|
54 | - } |
|
50 | + if (is_array($value)) { |
|
51 | + Route4Me::simplePrint($value, true); |
|
52 | + } else { |
|
53 | + echo "$key => $value <br>"; |
|
54 | + } |
|
55 | 55 | } |
@@ -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\Enum\DeviceType; |
@@ -24,10 +24,10 @@ |
||
24 | 24 | |
25 | 25 | // Remove an optimization |
26 | 26 | $params = array ( |
27 | - "optimization_problem_ids" => array( |
|
28 | - "0" => $optimizationProblemId |
|
29 | - ), |
|
30 | - "redirect" => 0 |
|
27 | + "optimization_problem_ids" => array( |
|
28 | + "0" => $optimizationProblemId |
|
29 | + ), |
|
30 | + "redirect" => 0 |
|
31 | 31 | ); |
32 | 32 | |
33 | 33 | $result = $optimization->removeOptimization($params); |
@@ -23,7 +23,7 @@ |
||
23 | 23 | assert(!is_null($optimizationProblemId), "Can't retrieve a random optimization problem ID"); |
24 | 24 | |
25 | 25 | // Remove an optimization |
26 | -$params = array ( |
|
26 | +$params = array( |
|
27 | 27 | "optimization_problem_ids" => array( |
28 | 28 | "0" => $optimizationProblemId |
29 | 29 | ), |
@@ -21,7 +21,7 @@ |
||
21 | 21 | |
22 | 22 | // Reoptimize an optimization |
23 | 23 | $problemParams = array( |
24 | - 'optimization_problem_id' => $optimizationProblemId |
|
24 | + 'optimization_problem_id' => $optimizationProblemId |
|
25 | 25 | ); |
26 | 26 | |
27 | 27 | $problem = OptimizationProblem::reoptimize($problemParams); |