@@ -13,16 +13,16 @@ discard block |
||
13 | 13 | Route4Me::setApiKey('11111111111111111111111111111111'); |
14 | 14 | |
15 | 15 | $addressList = array( |
16 | - "Los Angeles International Airport, CA", |
|
17 | - "n512,Florida Pl,Barberton,OH,44203", |
|
18 | - "3495,Purdue St,Cuyahoga Falls,OH,44221" |
|
16 | + "Los Angeles International Airport, CA", |
|
17 | + "n512,Florida Pl,Barberton,OH,44203", |
|
18 | + "3495,Purdue St,Cuyahoga Falls,OH,44221" |
|
19 | 19 | ); |
20 | 20 | |
21 | 21 | $addressesString = implode('\n', $addressList); |
22 | 22 | |
23 | 23 | $geocodingParameters = array( |
24 | - 'strExportFormat' => 'json', |
|
25 | - 'addresses' => $addressesString |
|
24 | + 'strExportFormat' => 'json', |
|
25 | + 'addresses' => $addressesString |
|
26 | 26 | ); |
27 | 27 | |
28 | 28 | $fGeoCoding = new Geocoding(); |
@@ -30,13 +30,13 @@ discard block |
||
30 | 30 | $bgResults = $fGeoCoding->forwardGeocoding($geocodingParameters); |
31 | 31 | |
32 | 32 | if ($geocodingParameters['strExportFormat'] == 'json') { |
33 | - foreach ($bgResults as $bgResult) { |
|
34 | - Route4Me::simplePrint($bgResult); |
|
35 | - echo "<br>"; |
|
36 | - } |
|
33 | + foreach ($bgResults as $bgResult) { |
|
34 | + Route4Me::simplePrint($bgResult); |
|
35 | + echo "<br>"; |
|
36 | + } |
|
37 | 37 | } else { |
38 | - foreach ($bgResults['destination'] as $bgResult) { |
|
39 | - Route4Me::simplePrint($bgResult); |
|
40 | - echo "<br>"; |
|
41 | - } |
|
38 | + foreach ($bgResults['destination'] as $bgResult) { |
|
39 | + Route4Me::simplePrint($bgResult); |
|
40 | + echo "<br>"; |
|
41 | + } |
|
42 | 42 | } |
@@ -27,15 +27,15 @@ |
||
27 | 27 | |
28 | 28 | // Add a custom note to a route |
29 | 29 | $noteParameters = array( |
30 | - 'route_id' => $routeId, |
|
31 | - 'address_id' => $route_destination_id, |
|
32 | - 'format' => 'json', |
|
33 | - 'dev_lat' => 33.132675170898, |
|
34 | - 'dev_lng' => -83.244743347168, |
|
35 | - 'custom_note_type[11]' => 'slippery', |
|
36 | - 'custom_note_type[10]' => 'Backdoor', |
|
37 | - 'strUpdateType' => 'dropoff', |
|
38 | - 'strNoteContents' => 'test1111' |
|
30 | + 'route_id' => $routeId, |
|
31 | + 'address_id' => $route_destination_id, |
|
32 | + 'format' => 'json', |
|
33 | + 'dev_lat' => 33.132675170898, |
|
34 | + 'dev_lng' => -83.244743347168, |
|
35 | + 'custom_note_type[11]' => 'slippery', |
|
36 | + 'custom_note_type[10]' => 'Backdoor', |
|
37 | + 'strUpdateType' => 'dropoff', |
|
38 | + 'strNoteContents' => 'test1111' |
|
39 | 39 | ); |
40 | 40 | |
41 | 41 | $address = new Address(); |
@@ -12,12 +12,12 @@ |
||
12 | 12 | |
13 | 13 | // Create a custom note type |
14 | 14 | $noteParameters=array( |
15 | - "type" => 'To Do', |
|
16 | - "values" => array( |
|
17 | - 'Pass a package', |
|
18 | - 'Pickup package', |
|
19 | - 'Do a service' |
|
20 | - ) |
|
15 | + "type" => 'To Do', |
|
16 | + "values" => array( |
|
17 | + 'Pass a package', |
|
18 | + 'Pickup package', |
|
19 | + 'Do a service' |
|
20 | + ) |
|
21 | 21 | ); |
22 | 22 | |
23 | 23 | $address = new Address(); |
@@ -25,7 +25,7 @@ |
||
25 | 25 | |
26 | 26 | // Remove a custom note type |
27 | 27 | $noteParameters = array( |
28 | - "id" => $randomCustomNoteID |
|
28 | + "id" => $randomCustomNoteID |
|
29 | 29 | ); |
30 | 30 | |
31 | 31 | $address = new Address(); |
@@ -27,13 +27,13 @@ |
||
27 | 27 | |
28 | 28 | // Add an address note |
29 | 29 | $noteParameters = array( |
30 | - "route_id" => $route_id, |
|
31 | - "address_id" => $route_destination_id, |
|
32 | - "dev_lat" => 33.132675170898, |
|
33 | - "dev_lng" => -83.244743347168, |
|
34 | - "device_type" => "web", |
|
35 | - "strUpdateType" => "dropoff", |
|
36 | - "strNoteContents" => "Test" |
|
30 | + "route_id" => $route_id, |
|
31 | + "address_id" => $route_destination_id, |
|
32 | + "dev_lat" => 33.132675170898, |
|
33 | + "dev_lng" => -83.244743347168, |
|
34 | + "device_type" => "web", |
|
35 | + "strUpdateType" => "dropoff", |
|
36 | + "strNoteContents" => "Test" |
|
37 | 37 | ); |
38 | 38 | |
39 | 39 | $address = new Address(); |
@@ -27,13 +27,13 @@ |
||
27 | 27 | |
28 | 28 | // Add a file note |
29 | 29 | $noteParameters=array( |
30 | - "strFilename" => "notes.csv", |
|
31 | - "route_id" => $route_id, |
|
32 | - "address_id" => $route_destination_id, |
|
33 | - "dev_lat" => 33.132675170898, |
|
34 | - "dev_lng" => -83.244743347168, |
|
35 | - "device_type" => "web", |
|
36 | - "strUpdateType" => "ANY_FILE" |
|
30 | + "strFilename" => "notes.csv", |
|
31 | + "route_id" => $route_id, |
|
32 | + "address_id" => $route_destination_id, |
|
33 | + "dev_lat" => 33.132675170898, |
|
34 | + "dev_lng" => -83.244743347168, |
|
35 | + "device_type" => "web", |
|
36 | + "strUpdateType" => "ANY_FILE" |
|
37 | 37 | ); |
38 | 38 | |
39 | 39 | $address = new Address(); |
@@ -28,13 +28,13 @@ discard block |
||
28 | 28 | |
29 | 29 | // Add an address note |
30 | 30 | $noteParameters = array( |
31 | - "route_id" => $route_id, |
|
32 | - "address_id" => $route_destination_id, |
|
33 | - "dev_lat" => 33.132675170898, |
|
34 | - "dev_lng" => -83.244743347168, |
|
35 | - "device_type" => "web", |
|
36 | - "strUpdateType" => "dropoff", |
|
37 | - "strNoteContents" => "Test ". time() |
|
31 | + "route_id" => $route_id, |
|
32 | + "address_id" => $route_destination_id, |
|
33 | + "dev_lat" => 33.132675170898, |
|
34 | + "dev_lng" => -83.244743347168, |
|
35 | + "device_type" => "web", |
|
36 | + "strUpdateType" => "dropoff", |
|
37 | + "strNoteContents" => "Test ". time() |
|
38 | 38 | ); |
39 | 39 | |
40 | 40 | $address = new Address(); |
@@ -45,8 +45,8 @@ discard block |
||
45 | 45 | |
46 | 46 | // Get address notes |
47 | 47 | $noteParameters = array( |
48 | - "route_id" => $route_id, |
|
49 | - "route_destination_id" => $route_destination_id |
|
48 | + "route_id" => $route_id, |
|
49 | + "route_destination_id" => $route_destination_id |
|
50 | 50 | ); |
51 | 51 | |
52 | 52 | $address = new Address(); |
@@ -56,8 +56,8 @@ discard block |
||
56 | 56 | echo "Destination note count --> ".$notes['destination_note_count']."<br>"; |
57 | 57 | |
58 | 58 | foreach ($notes['notes'] as $note) { |
59 | - echo "========== Notes ==================<br>"; |
|
60 | - echo "note_id --> ".$note['note_id']."<br>"; |
|
61 | - $content = isset($note['contents']) ? $note['contents'] : ""; |
|
62 | - if (strlen($content)>0) echo "contents --> $content"."<br>"; |
|
59 | + echo "========== Notes ==================<br>"; |
|
60 | + echo "note_id --> ".$note['note_id']."<br>"; |
|
61 | + $content = isset($note['contents']) ? $note['contents'] : ""; |
|
62 | + if (strlen($content)>0) echo "contents --> $content"."<br>"; |
|
63 | 63 | } |
@@ -25,18 +25,18 @@ discard block |
||
25 | 25 | |
26 | 26 | $addresses = array(); |
27 | 27 | foreach($json as $address) { |
28 | - $addresses[] = Address::fromArray($address); |
|
28 | + $addresses[] = Address::fromArray($address); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | $parameters = RouteParameters::fromArray(array( |
32 | - "algorithm_type" => Algorithmtype::TSP, |
|
33 | - "route_name" => "Single Driver Multiple TimeWindows 12 Stops", |
|
34 | - "route_date" => time() + 24*60*60, |
|
35 | - "route_time" => 5 * 3600 + 30 * 60, |
|
36 | - "distance_unit" => DistanceUnit::MILES, |
|
37 | - "device_type" => DeviceType::WEB, |
|
38 | - "optimize" => OptimizationType::DISTANCE, |
|
39 | - "metric" => Metric::GEODESIC |
|
32 | + "algorithm_type" => Algorithmtype::TSP, |
|
33 | + "route_name" => "Single Driver Multiple TimeWindows 12 Stops", |
|
34 | + "route_date" => time() + 24*60*60, |
|
35 | + "route_time" => 5 * 3600 + 30 * 60, |
|
36 | + "distance_unit" => DistanceUnit::MILES, |
|
37 | + "device_type" => DeviceType::WEB, |
|
38 | + "optimize" => OptimizationType::DISTANCE, |
|
39 | + "metric" => Metric::GEODESIC |
|
40 | 40 | )); |
41 | 41 | |
42 | 42 | $optimizationParams = new OptimizationProblemParams; |
@@ -46,11 +46,11 @@ discard block |
||
46 | 46 | $problem = OptimizationProblem::optimize($optimizationParams); |
47 | 47 | |
48 | 48 | foreach ((array)$problem as $key => $value) { |
49 | - if (is_string($value)) { |
|
50 | - echo $key." --> ".$value."<br>"; |
|
51 | - } else { |
|
52 | - echo "************ $key ************* <br>"; |
|
53 | - Route4Me::simplePrint((array)$value, true); |
|
54 | - echo "******************************* <br>"; |
|
55 | - } |
|
49 | + if (is_string($value)) { |
|
50 | + echo $key." --> ".$value."<br>"; |
|
51 | + } else { |
|
52 | + echo "************ $key ************* <br>"; |
|
53 | + Route4Me::simplePrint((array)$value, true); |
|
54 | + echo "******************************* <br>"; |
|
55 | + } |
|
56 | 56 | } |
@@ -26,24 +26,24 @@ 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" => "Single Depot, Multiple Driver, No 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, |
|
43 | - "travel_mode" => TravelMode::DRIVING, |
|
44 | - "vehicle_capacity" => 20, |
|
45 | - "vehicle_max_distance_mi" => 99999, |
|
46 | - "parts" => 4 |
|
33 | + "algorithm_type" => Algorithmtype::CVRP_TW_SD, |
|
34 | + "route_name" => "Single Depot, Multiple Driver, No 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, |
|
43 | + "travel_mode" => TravelMode::DRIVING, |
|
44 | + "vehicle_capacity" => 20, |
|
45 | + "vehicle_max_distance_mi" => 99999, |
|
46 | + "parts" => 4 |
|
47 | 47 | )); |
48 | 48 | |
49 | 49 | $optimizationParams = new OptimizationProblemParams; |
@@ -53,12 +53,12 @@ discard block |
||
53 | 53 | $problem = OptimizationProblem::optimize($optimizationParams); |
54 | 54 | |
55 | 55 | foreach ((array)$problem as $key => $value) { |
56 | - if (is_string($value)) { |
|
57 | - echo $key." --> ".$value."<br>"; |
|
58 | - } else { |
|
59 | - echo "************ $key ************* <br>"; |
|
60 | - Route4Me::simplePrint((array)$value, true); |
|
61 | - echo "******************************* <br>"; |
|
62 | - } |
|
56 | + if (is_string($value)) { |
|
57 | + echo $key." --> ".$value."<br>"; |
|
58 | + } else { |
|
59 | + echo "************ $key ************* <br>"; |
|
60 | + Route4Me::simplePrint((array)$value, true); |
|
61 | + echo "******************************* <br>"; |
|
62 | + } |
|
63 | 63 | } |
64 | 64 |