Google Api 标准格式的响应距离值

Google Api Response Distance Value in standard format

目前我return距离路线如下:

        var Distance = response.routes[0].legs[0].distance.text;
        alert(Distance);

Atm 值有时 return 以千米为单位,有时以米为单位,具体取决于 values.Is 是否可能 return 此值始终以公里为单位?

使用response.routes[0].legs[0].distance.value。那将永远是米。

From the documentation for google.maps.Distance object

属性类型描述

text string 距离值的字符串表示,使用请求中指定的 UnitSystem。

数字以米为单位的距离.