HERE Routing vs Google Maps Routing
Choose HERE when a vehicle’s physical or legal characteristics must constrain the route beyond dimensions and gross weight. Per-axle-group weight, the full ADR hazardous cargo set, toll cost for the described vehicle, and coverage outside the contiguous United States. Choose Google when you are moving passenger vehicles or people, or when your commercial vehicle operation is US-domestic, always online, and does not need toll cost before dispatch. Everything below is elaboration on those two sentences.Comparison scope
This page compares routing engines: path computation, travel-time estimation, matrices, and vehicle constraint handling. It does not compare geocoding (see HERE Geocoding vs Google Maps), map rendering, or platform-level ecosystem fit (see HERE vs Google Maps). Google’s routing capability is delivered through the Routes API, which supersedes the legacy Directions and Distance Matrix APIs. Where this page says “Google,” it means Routes API unless stated otherwise.Google Large Vehicle Routing: what it covers
Google Maps Platform made Large Vehicle Routing generally available on 17 August 2026, delivered through the Routes API, the Route Optimization API, and the Navigation SDK by route token. Expressible. Total height, width, length, gross weight, axle count, and hazardous goods classification. The request requirestravelMode=TRUCK with a vehicleInfo object inside routeModifiers, and routingPreference=TRAFFIC_AWARE_OPTIMAL.
Documented as unsupported. Truck toll prices. Speed limits. Routing for radioactive hazardous materials.
Coverage. The 48 contiguous United States only. No Alaska, Hawaii, Canada, or Mexico.
Access. Documented as generally available, but provisioned on request rather than enabled by default on every project.
Compliance posture. The response carries a flag indicating that route restrictions were partially ignored, and the documentation states that drivers must not rely solely on the returned route to be safe or legal.
Verified August 2026 against Google’s large vehicle routing overview. Capabilities change. Check the current reference before architecting, and confirm your project is provisioned before planning a sprint around it.
Decision summary
Where HERE is stronger
The tail of the commercial vehicle constraint set
The gap is no longer about whether a truck profile exists. It is about how much of your vehicle the profile can describe. HERE Routing v8 accepts, as first-class inputs, a vehicle description that includes:- Physical dimensions —
height,width,length,trailerLength(all in centimetres) - Weight —
grossWeight,currentWeight,emptyWeight,payloadCapacity(kilograms) - Axle configuration —
axleCount,weightPerAxle, andweightPerAxleGroupwithsingle,tandem,triple,quad,quintgroups tunnelCategory— the ADR cargo tunnel restriction code, valuesB,C,D,EshippedHazardousGoods— a list drawn fromexplosive,gas,flammable,combustible,organic,poison,radioactive,corrosive,poisonousInhalation,harmfulToWater,otherkpraLength— kingpin-to-rear-axle, relevant to California and Idaho restrictionscategory: lightTruck— a legal exemption that does not waive physical dimension limitstrailerCount,tiresCount,licensePlatefor environmental-zone evaluation
Verified against the HERE Matrix Routing v8 OpenAPI specification, version 8.47.0, retrieved July 2026. The
truck object is marked deprecated in favour of vehicle; both currently accept the same fields. Check the current specification before implementing.Toll cost for the described vehicle
HERE returns expected toll cost computed against the vehicle you described — class, axle count, dimensions, weight. Google documents truck toll prices as unsupported for large vehicle routing.This is not a reporting feature. On a single lane, the toll figure differs materially depending on whether the vehicle profile was supplied — a passenger-class estimate and a commercial one are different numbers for the same road.If your dispatcher prices a load before the truck moves, the toll figure is the quote. See Toll Cost.
Route Matching
HERE offers map matching: taking a noisy GPS trace and returning the road segments actually travelled, with their attributes. This is what IFTA jurisdiction-mile reporting and defensible speed compliance require. Google Maps Platform has no equivalent product. Nearest-address reverse geocoding does not substitute — it returns an address, not a segment, and it will not survive an audit. See Route Matching and ELD Platform.Tour Planning
HERE Tour Planning is a Vehicle Routing Problem solver: capacitated VRP, time windows, multi-depot, heterogeneous fleets, pickup-and-delivery, priorities, and reloads.HERE documents Tour Planning as included in the HERE Base Plan. Confirm your own entitlement; Base Plan inclusion and your contract’s inclusion are separate facts. Source: HERE Tour Planning introduction.
Coverage outside the contiguous United States
HERE carries commercial road attributes in more than 200 countries. Google Large Vehicle Routing stops at the contiguous 48. For a carrier running US–Canada or US–Mexico lanes, this is not a feature comparison. It is a coverage boundary that ends the evaluation.Where Google is stronger
Passenger vehicle traffic and ETA
Google’s traffic data derives from an enormous consumer device population. For dense urban passenger-car routing, this is a real advantage and it is honest to say so. Large Vehicle Routing extends this with truck-observed speed data in the US, which is a genuine improvement over applying car speeds to a truck profile. Whether it is an advantage on your corridors, at your departure times, is an empirical question. We give a test plan below. Do not accept either vendor’s claim, including ours.Ecosystem
More engineers have shipped Google Maps integrations. More Stack Overflow answers exist. More libraries assume it. Hiring is easier. This is a real cost that appears in your engineering budget, not on a rate card.Driver-facing familiarity
If your drivers already navigate with Google Maps, the adoption cost of a Google-rendered in-cab experience is close to zero. Driver adoption is a real project risk and it does not appear in any API comparison.Consumer-facing everything
If your product is consumer navigation, ride-hailing, or anything where users recognize the map’s appearance and expect Street View, Google is the default and the default is correct.Simplicity at low volume
Below roughly ten thousand routing calls per month, both platforms are effectively free and Google’s onboarding is faster. Migration engineering cost dominates any saving. Do something else.Where the difference is commercial, not technical
Matrix size limits
Matrix ceilings are frequently quoted as a single number. There isn’t one. The limits, from the Matrix Routing v8 OpenAPI specification (v8.47.0, retrieved July 2026):
Additional documented constraints: request body maximum 10 MiB uncompressed; a maximum of 100 waypoints matched to any single road segment across origins and destinations combined; when only
origins is supplied it is reused as destinations, capping origins at 50 in that case.
Google’s computeRouteMatrix accepts large vehicle profiles and imposes its own element limits, which vary by endpoint and tier. Verify current limits directly at Google’s Routes API documentation rather than from any comparison table, including this one.
The architecturally useful statement is directional: HERE’s Region and Profile async modes reach matrix sizes at which looping point-to-point routing is not merely expensive but infeasible. Whether that helps you depends on whether your workload tolerates a bounded region or the loss of live traffic.
Pricing
What can be said structurally:- Both platforms bill per request for routing.
- Both have volume tiers and free bundles. Bundles are per-API and do not pool.
- On HERE, a truck route is a routing request. It draws from the same free allowance and the same rate as a car route. The vehicle profile does not move it to a different meter.
- On Google, large vehicle routing requires
routingPreference=TRAFFIC_AWARE_OPTIMAL, which bills above the Compute Routes Essentials rate. Confirm the exact SKU your traffic will land on before modelling it. - HERE offers an asset-based commercial model in addition to call-volume, priced per tracked vehicle rather than per call. Availability depends on contract tier — confirm before it becomes load-bearing.
- Google has repriced Maps Platform more than once since 2018. Whether HERE pricing through a partner is contractually more stable is a term in your contract, not a property of the platform.
Request and billing architecture
The single largest cost determinant is not the rate. It is whether you chose the right primitive. An n×m cost table is n·m routing calls, or one matrix call. That is a complexity difference. It is not closed by any vendor’s rate card, and it applies identically on Google. See Routing vs Matrix.Migration mapping
Semantic differences that will bite you:
200 is not success. HERE returns HTTP 200 with an empty routes array and a notice containing routeCalculationFailed when no path exists. Checking resp.ok swallows the failure.
Both platforms can return a route that violates a constraint, and both tell you. HERE returns per-cell errorCodes in matrix responses, including 3 — route found but violates a restriction. Google flags routes where restrictions were partially ignored. Read both. A route returned with a violation flag is not a route.
Matrix results are flat and row-major. A 2×2 matrix returns travelTimes: [73, 1231, 983, 400]. Index as travelTimes[origin * numDestinations + destination]. Get it wrong and every travel time is plausible and every assignment is transposed. Nothing throws.
403 is not 401. 401 means the credential is wrong. 403 means the credential is valid and your account lacks entitlement for that product. Retrying 403 is permanently futile. On Google, an unprovisioned large vehicle routing project behaves the same way — it is an entitlement problem, not a code problem.
Follow the statusUrl HERE returns. HERE’s specification explicitly warns that constructing the async status URL from the base host may resolve to a different region and return 404, because of global load balancing.
See Google Migration Architecture.
Architecture implications
Caching. Both platforms benefit identically from caching route geometry (stable for hours) separately from ETAs (not stable). Neither is a differentiator. Batching. HERE’s matrix async mode is a job: submit, persist thematrixId, poll the returned statusUrl, retrieve. This is state your architecture must hold across a worker restart, or you resubmit and pay twice. Google’s matrix is synchronous, which is simpler and imposes lower size ceilings.
Vendor abstraction. If you build a provider facade, design its interface from the richer constraint set. An interface derived from Google’s large vehicle profile has a field for gross weight and axle count, but none for weightPerAxleGroup or tunnelCategory. When you add HERE, those constraints have nowhere to live and get dropped silently.
Failover. Falling back from HERE truck routing to Google Large Vehicle Routing is more dangerous than falling back to unconstrained routing was.
An unconstrained fallback produced obviously wrong routes — a truck sent under a low bridge fails visibly and immediately. A partially-constrained fallback produces plausible ones. If your vehicle’s legality depends on axle-group weight, tunnel category, or a cargo class the fallback cannot express, the route looks correct, passes review, and is illegal.
Refuse to route rather than route with a degraded constraint set. Assert field-level parity in the facade, not merely that a provider responded.
Cost model
What creates billable activity, on both platforms:- One routing call per computed path
- One matrix call per submitted matrix (HERE), or per element batch (Google — verify current element accounting)
- Requesting turn-by-turn instructions when you consume only a duration
- Recomputing routes for unchanged origin, destination, and departure time
- Re-routing on every GPS ping to refresh an ETA
How to evaluate with your own data
Do not accept the tables above. Run this. Zero: confirm access. Google documents Large Vehicle Routing as provisioned on request. Confirm your project is enabled before you plan the evaluation, not during it. Route set. Take 500 trips your fleet actually drove, with telematics ground truth for actual driven distance and duration. Route each through both platforms. Compare against ground truth, not against each other. Two wrong answers can agree. Report the residual distribution, not the mean. A platform whose durations are unbiased on average but have twice the variance produces twice as many late deliveries. Truck constraint validation is a gate, not a metric. Route a vehicle withheight: 410 (HERE) / totalHeightMm: 4100 (Google) through:
- The 11foot8 bridge, Durham NC
- Storrow Drive, Boston MA
- The Southern State Parkway, Long Island NY
Common decision mistakes
Assuming Google has no truck routing. It has, since August 2026, in the 48 contiguous United States: dimensions, gross weight, axle count, hazmat classes. Any comparison written before that date — including earlier revisions of this page — is wrong on this point. Assuming the constraint sets are therefore equivalent. Toll cost, speed limits, radioactive cargo, ADR tunnel category and non-US coverage are documented gaps. Per-axle-group weight requires verification. Evaluating Google LVR without checking provisioning. Generally available is not the same as enabled on your project. Treating Google as a safe failover for truck routing. A partially-constrained fallback fails silently. That is worse than a fallback that fails loudly. Passing millimetres where centimetres are expected, or the reverse. A 41-centimetre truck routes anywhere and returns200.
Ignoring the restriction-violation flag. Both platforms will tell you the route breaks a constraint. Neither will stop you shipping it.
Comparing per-1,000 rates. Close at entry level. Meaningless without the SKU, the call mix, and the caching strategy.
Treating matrix size as a single number. It varies by mode, by sync/async, and by entitlement.
Assuming truck routing is a parameter. transportMode=truck selects an engine. It does not describe your vehicle. Omit dimensions and HERE routes an unconstrained vehicle with no warning.
Designing the abstraction layer from the narrower constraint set.
Migrating before optimizing. Moving waste to a cheaper meter.
Migrating everything simultaneously. Two changes, one incident, ambiguous cause.
Validating cost but not route quality. A cheaper wrong route is worse.
Presenting savings without migration engineering cost.
Choose HERE when
- You route commercial vehicles outside the contiguous United States
- Your jurisdiction regulates by axle group
- You carry ADR-regulated or radioactive cargo
- You need toll cost for the described vehicle before dispatch
- You need defensible reconstruction of driven routes for compliance
- You need fleet-wide multi-stop optimization under capacity and time-window constraints
- You need very large matrices and can accept a bounded region or Profile mode
- Contractual price stability is a board-level concern and you have negotiated it
Choose Google when
- Your vehicles are passenger cars
- Your commercial vehicle operation is US-domestic, always online, and does not need toll cost at dispatch
- Your product is consumer-facing and users recognize the map
- Driver familiarity with the Google Maps interface is a material adoption constraint
- Your volume is low enough that migration engineering exceeds the saving
- Ecosystem familiarity and hiring are material constraints
- You need Street View or comparable imagery
Related documentation
Truck Routing
Constraints, units, and the trap geometry that proves they apply.
Toll Cost
Why the toll figure depends on the vehicle profile, and what Google returns instead.
Matrix Routing
Modes, async lifecycle, and the flat result array.
Google Migration Architecture
Dual-running, shadow comparison, rollback.
Sources
HERE- Routing API v8 developer guide
- Matrix Routing v8 OpenAPI specification — authoritative on modes and size limits
- Transport modes
- Tour Planning introduction
- Routes API documentation
- Large vehicle routing overview — vehicle parameters, coverage, documented limitations
- Maps Platform pricing
Need to compare these platforms with your own request mix? Placematic can help you run a technical and cost evaluation using representative routes, addresses and production volumes. Placematic is an official HERE Technologies reseller and implementation partner. Cost Reduction Audit.