如何使用 mapquest 坐标数据在 react-native-maps 中渲染方向坐标?

How to render directions coordinates in react-native-maps using mapquest coordinates data?

我正在尝试使用来自 MapQuest REST API 的坐标在地图上呈现方向折线,但我得到的折线没有准确地显示在道路顶部。而是显示不同的输出。 我想准确地在道路顶部绘制多段线。我正在发送以下请求以获取路线(使用 MapQuest Directions Route API):

http://www.mapquestapi.com/directions/v2/optimizedroute?key=[API_KEY]&json={%22locations%22:[%2234.0120337,-6.7383617%22,%2234.0253894,-6.7592364%22]}

然后根据上述请求会话 ID,我发送另一个请求以获取坐标(使用 MapQuest Directions Route Shape API):

http://www.mapquestapi.com/directions/v2/routeshape?key=[API_KEY]&sessionId=[ABOVE_REQUEST_SESSION_ID]&mapWidth=320&mapHeight=240&mapScale=1733371&mapLat=34.0120337&mapLon=-6.7383617

我正在使用数组 route.shape.shapePoints,我应该如何在地图上的道路上方正确绘制折线?

我使用的代码:

<MapView
    style={{ flex: 1 }}
    showsUserLocation
    initialRegion={{
        latitude,
        longitude,
        latitudeDelta: 0.0922,
        longitudeDelta: 0.0421
    }}
>
    <MapView.Polyline strokeWidth={2} strokeColor="red" coordinates={this.state.coords}></MapView.Polyline>
</MapView>

下面是我得到的当前地图的截图:

尝试将泛化选项设置为较低的值,例如 0 或 10。