Osrm路由不起作用

时间:2018-01-14 11:21:57

标签: routing osrm

我想在5个坐标之间进行路由,但是osrm路由服务无法正常工作。

我对服务器的请求; https://router.project-osrm.org/route/v1/driving/28.0705,41.1813;22.5441,40.0051;28.3865,39.1073;22.6612,40.0330;27.3865,40.0151

来自服务器的响应;

<?xml version="1.0" encoding="utf-8"?>
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.unity3d.player"
    xmlns:tools="http://schemas.android.com/tools"
    android:installLocation="preferExternal"
    android:versionCode="1"
    android:versionName="1.0">
    <supports-screens
        android:smallScreens="true"
        android:normalScreens="true"
        android:largeScreens="true"
        android:xlargeScreens="true"
        android:anyDensity="true"/>

    <application
        android:theme="@android:style/Theme.Holo"
        android:icon="@drawable/app_icon"
        android:label="@string/app_name">
        <activity android:name="com.unity3d.player.UnityPlayerActivity"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
        </activity>
    </application>
</manifest>

}

1.location:28.0705,41.1813 2.location:22.5441,40.0051 3.location:28.3865,39.1073 4.location:22.6612,40.0330 5.location:27.3865,40.0151

如果我们想在这些点之间进行路由,则不必如下所示 1.location:28.0705,41.1813 3.location:28.3865,39.1073 5.location:27.3865,40.0151 4.location:22.6612,40.0330 2.location:22.5441,40.0051

Osrm无法指向最短的距离?

1 个答案:

答案 0 :(得分:1)

那里没有什么奇怪的。这是一条路线,因此您必须以精确的顺​​序前往您的位置。所以它不会改变顺序。

它写在api中: &#34; 路线服务 在提供的订单中查找坐标之间的最快路线。 &#34;

如果您想订购它,我不确定OSRM是否是最好的工具,但有&#34; 旅行服务&#34;那可能会起到作用。

度过愉快的一天。