コード例 #1
0
        public void Nearest_Response()
        {
            var result = osrm.Nearest(new Location(52.4224, 13.333086));

            CheckStatus200(result);
            Assert.IsNotNull(result.MappedCoordinate);
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: norcis/Osrm.Client
 private static void Nearest4x(OsrmClient osrm)
 {
     var result = osrm.Nearest(new Location(52.4224, 13.333086));
 }