13 questions
Advice
0
votes
0
replies
66
views
Best Parameter-Set for Google Fleet Routing to Use all Vehicles
I'm trying to use the Google fleet routing API (https://developers.google.com/maps/documentation/route-optimization/reference/rest/v1/projects.locations/optimizeTours) to solve a fleet routing problem ...
Advice
0
votes
0
replies
91
views
Location sharing with multiple customers
I run a furniture delivery service. Is it possible for me to share my real time vehicle location with multiple customers at the same time and then delete these customers from viewing my location as ...
Score of 0
0 answers
36 views
Identical Load Consolidation Not Supported by Route Optimization API?
I am using the optimizeTours API call with (1) Two IDENTICAL loads and (2) One vehicle that can hold both loads. The response (incorrectly?) shows only one load for each visit, but (correctly) adds ...
Score of 0
0 answers
42 views
RouteOptimization API tells me to go twice to the same pick-up location
I'm using the RouteOptimization API to plan pick-ups and deliveries for my business.
I have multiple pick-up points (suppliers) and multiple delivery places (clients). I also have returns, packages ...
Score of 0
1 answer
82 views
Google json credential file authenticates in gCloud CLI but causes exception in WinForms application
I used
gcloud iam workload-identity-pools create-cred-config ...
on the CLI, then used
gcloud auth login --cred-file=FILENAME
I get the following message:
Authenticated with external account ...
Score of 0
1 answer
132 views
route optimization api shipmentIndex undefined
I'm using the Route Optimization API, but I'm noticing that I'm not getting all my points and that the missing delivery doesn't have a shipmentIndex.
import { NextResponse } from 'next/server';
import ...
Score of 1
1 answer
145 views
How to set minimum-maximum load constraint in Google Route Optimization API
I'm using Google RO API to create clusters. There is a capacity constraint on the clusters and the clusters should not overlap with each other. To do this, I've set the load demand of each shipment to ...
Score of 2
1 answer
148 views
How to group nearby stops to be visited sequentially using Google Route Optimization API?
I’m using the Google Route Optimization API to optimize 50 stops with one vehicle. I have around 10 points within a 100m radius, but after optimization, they are not visited sequentially (refer to the ...
Score of 1
1 answer
194 views
Capacitated Clustering using Google Route Optimization API
Fixed sized clusters
I need help with a capacitated clustering task. I have 400 locations (the number can vary each time), and I need to create fixed-size clusters (e.g., 40 locations per cluster). ...
Score of 1
1 answer
115 views
Limiting Deliveries (lets say 4 delivery a day) in Google Route Optimization API
I am working on a delivery scheduling app using Google Route Optimization API.
So scenario is I have to schedule multiday deliveries with one vehicle. Each day the vehicle only have to deliver 3 to 4 ...
Score of 0
1 answer
336 views
Guidance required with Python VRP Time Window Problem (using Google OR Tools)
I'm trying to solve the Vehicle Route Optimisation with Time Window constraints using Google's OR Tools in Python. The problem here I'm solving is - I want to deliver packages to the customer, where ...
Score of 1
0 answers
468 views
Google Route Optimization API - how to construct header for POST request without OAuth? Need route optimization 25+ stops
My organization was using the Google Directions API for route optimization, but we migrated to the Routes API because initial documentation suggested it would allow us to optimize routes with 25+ ...
Score of 2
1 answer
1238 views
Waypoint Optimization: Routes API vs Route Optimization API
I understand both Google Maps Routes API and the (newly-launched) Route Optimization API will return the best possible route through multiple stops. Route Optimization API seems like it can handle ...