Skip to main content
Most Google Maps Platform services have a direct Baato counterpart for Nepal. This page is the endpoint-by-endpoint mapping; the full migration guide walks through worked examples.

Service mapping

Baato has no equivalent for Distance Matrix, Roads, Street View, Time Zone or Elevation. If one of those is load-bearing for you, tell us — it helps us prioritise.

Differences worth knowing before you port

Google ships an SDK that owns both tiles and rendering. Baato ships styles — you pick the renderer. MapLibre GL is the usual choice and is open source on every platform; Mapbox GL works too.In practice this makes migration easier, not harder: switching a MapLibre app from another tile provider to Baato is a one-line style URL change.
Google’s Autocomplete can return geometry inline. Baato’s Search deliberately omits it to keep suggestion responses small, so you make a second call to Places with the placeId once the user picks a result.If you were calling Autocomplete then Place Details already, the shape is identical.
Same format Google uses, so any polyline decoder you already have keeps working. The field is encodedPolyline, and distance and duration arrive as distanceInMeters and timeInMs — milliseconds, where Google’s duration.value is seconds.
Baato takes the token as key on every request, like Google. Domain restrictions work similarly too — set allowed origins per token in your dashboard. See Authentication.
Baato’s data covers Nepal in depth rather than the world thinly. If your application serves users outside Nepal, plan for a fallback provider on those requests.

A worked comparison

Autocomplete, before and after:

Next

Full migration guide

Longer worked examples, endpoint by endpoint.

Quickstart

Get a token and make your first Baato request.