1. Go to this page and download the library: Download detrack/elasticroute library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
detrack / elasticroute example snippets
use Detrack\ElasticRoute\Plan;
Plan::$defaultApiKey = "my_super_secret_key";
$plan = new Plan();
$plan->id = "my_first_plan";
$plan->stops = [
[
"name" => "Changi Airport",
"address" => "80 Airport Boulevard (S)819642",
],
[
"name" => "Gardens By the Bay",
"lat" => "1.281407",
"lng" => "103.865770",
],
// add more stops!
// both human-readable addresses and machine-friendly coordinates work!
];
foreach($solution->stops as $stop){
// $stop is an instance of \Detrack\ElasticRoute\Stop, more details below
print("Stop ".$stop->name." will be served by ".$stop->assign_to." at time".$stop->eta);
}
$morningOnlyStop = new Stop();
$morningOnlyStop->name = "Morning Delivery 1";
$morningOnlyStop->from = 900;
$morningOnlyStop->till = 1200;
// add address and add to plan...
$morningShiftVan = new Vehicle();
$morningShiftVan->name = "Morning Shift 1";
$morningShiftVan->from = 900;
$morningShiftVan->till = 1200;
// add to plan and solve...
$commonStop = new Stop();
$commonStop->name = "Normal Delivery 1";
$commonStop->depot = "Main Warehouse";
// set stop address and add to plan...
$rareStop = new Stop();
$rareStop->name = "Uncommon Delivery 1";
$rareStop->depot = "Auxillary Warehouse";
// set stop address and add to plan...
$plan->vehicles = [
[
"name" => "Van 1",
"depot" => "Main Warehouse",
],
[
"name" => "Van 2",
"depot" => "Auxillary Warehouse",
],
];
$plan->depots = [
[
"name" => "Main Warehouse",
"address" => "Somewhere",
],
[
"name" => "Auxillary Warehouse",
"address" => "Somewhere else",
]
];
// solve and get results...
$plan = new Plan();
$plan->connectionType = "poll";
// do the usual stuff
$solution = $plan->solve();
while($solution->status != "planned"){
$solution->refresh();
sleep(2);
}
use Detrack\ElasticRoute\DashboardClient;
DashboardClient::$defaultApiKey = "your-super-secret-key";
$stop = new Stop();
$stop->client = $client; // instance of Detrack\ElasticRoute\DashboardClient
$stop->name = "Test Stop";
$stop->address = "8 Somapah Road";
$stop->date = date('Y-m-d'); // the date must be present if CRUDing individual stops
// create – will throw error if a stop with the same name already exists on the same date
$stop->create();
// read – will return null if a stop with specified name is not found on date (but the object itself is not changed)
$stop->retrieve();
// update – will throw error if a stop with the specified name is not found on date
$stop->name = "Singapore Zoo";
$stop->address = "80 Mandai Lake Road Singapore 729826";
$stop->update();
// delete – will throw error if a stop with the specified name is not found on date
$stop->delete();
$vehicle = new Vehicle();
$vehicle->client = $client; // instance of Detrack\ElasticRoute\DashboardClient
$vehicle->name = "Test Van";
$vehicle->avail_from = 900;
$vehicle->avail_till = 1500;
// create – will throw error if a vehicle with the same name already exists on the same account
$vehicle->create();
// read – will return null if a vehicle with specified name is not found (but the object itself will not be changed)
$vehicle->retrieve();
// update – will throw error if a vehicle with the specified name is not found on the same account
$vehicle->avail_till = 1700;
$vehicle->update();
// delete – will throw error if a stop with the specified name is not found on date
$vehicle->delete();
$client->startPlanningOnDate(date('Y-m-d'));
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.