Truck route path
Contents
The Trimble Maps routing algorithm generates truck routes that are safe and legal based on a vehicle’s dimensions, load (hazmat), and vehicle type. When the route is created, it follows a series of GPS coordinates along roadways. These coordinates are the “route path.”
The route path can be used to visualize the route on a map using our JavaScript Maps SDK, our RESTful mapping APIs, or any application that can consume and display the GPS coordinates that comprise the route.

How to generate a route path
We recommend making a GET method request to the Route Path API, and entering enter the stops on your route as longitude/latitude coordinates. The route path is also returned as a series of longitude/latitude points.
All API calls require an API key for authentication. (Because route path is primarily a service for map visualization, a license for the JavaScript Maps SDK is required. Contact us for more information.)
Step 1: Select your stop locations
The Route Path service is available via the following URL:
https://pcmiler.alk.com/apis/rest/v1.0/Service.svc/route/routepath?
stops
is the only required parameter in your GET call if you are routing in North America. (See below about setting the region
for other parts of the world.)
If you only enter stops, and no other parameters, the routing algorithm uses default values for all of the vehicle settings and route options. The default options create a practical route that is suitable for an 80,000-pound, 5-axle truck with the following dimensions: Length = 48 feet; Width = 96 inches or less; Height = 13 ft. 6 in.
Parameter | Description | Example (with URL encoding) |
---|---|---|
stops | The coordinates that make up the stops of the route. Each stop is specified as a comma-separated pair of floating point numbers, representing longitude and latitude respectively. There must be at least two pairs of coordinates. (We recommend six digits after the decimal point for the greatest precision.) | stops=-75.173297%2C39.942892%3B-74.83153%2C39.61703%3B-74.438942%2C39.362469
|
The region
parameter is required only if you are routing outside of North America.
Parameter | Description | Example (with URL encoding) |
---|---|---|
region | The data region in which stop coordinates lie. Required to specify regions outside of NA. 0 - Unknown 1 - AF 2 - AS 3 - EU 4 - NA (Default) 5 - OC 6 - SA 7 - ME | region=3
|
Step 2: Customize the route for your vehicles and preferences
The Route Path API has dozens of optional settings you can use to generate a path that is safe, legal, and efficient for your vehicles and your fleet’s preferences. The table below includes the most commonly applied settings.
Parameter | Description | Example (with URL encoding) |
---|---|---|
vehType | Restricts the route to roads that are accessible by the selected vehicle type. 0 - Truck (Default) 1 - LightTruck 2 - Automobile 3 - Midsize Truck 4 - School Bus | vehType=0
|
routeType | The type of route you want to calculate. 0 - Practical (Default) 1 - Shortest 2 - Fastest | routeType=0
|
overrideClass | A comma separated list of class overrides. This allows you to select whether a truck with a 48’ or shorter trailer should still adhere to routing for larger (53’) trucks along the National Network. (U.S. Only) Note that if | overrideClass=0
|
tollRoads Available in dataVersion PCM34 and Later. Use avoidTolls for older versions.
| Indicates whether or not to avoid toll roads when generating a route. By Default, this parameter is null. It can be set to: 1 - Always Avoid 2 - Avoid if Possible 3 - Use | tollRoads=2
|
distUnits | Sets whether to use miles or kilometers in distance and speed measurements. 0 - Miles (Default) 1 - Km | distUnits=1
|
openBorders | Sets whether or not international borders are open to travel. Set to false to minimize the number of international border crossings, unless they are necessary to reach all of the stops on a route. For example, if all your stops are in the “lower 48” United States, the resulting route stays in the United States even if the most practical or shortest route would normally involve some Canadian mileage. The true option ignores international boundaries in generating the best route. | openBorders=true
|
overrideRestrict | Indicates whether or not to override truck restrictions pertaining to specific sizes and weights when generating a route. True False (Default) | overrideRestrict=false
|
hazMat | The hazardous material type to apply when generating a route. Read more about hazmat routing. Options are:
| hazMat=0
|
tunnelCategory | The tunnel category to apply when generating a route. (Europe only) Options are:
| tunnelCategory=0
|
vehDimUnits | The units to use when entering vehicle dimensions. 0 - English (Default) 1 - Metric | vehDimUnits=0
|
vehHeight | The height of the truck in feet and inches or meters depending on vehDimUnits .
| vehHeight=13%276%22 vehHeight=4.1148 (Metric)
|
vehLength | The length of a straight truck/van or combined vehicle’s trailer in feet and inches or meters depending on vehDimUnits . You do not need to include the tractor’s length in this value for a tractor/trailer. If you have tandem trailers that don’t articulate (rigid connection) then it would be the combined length of the trailers. More than just a legal setting, vehLength is used to calculate turning radius using the maximum straight length to see if the driver can make the turn.
| vehLength=48%270%22 vehLength=14.6304 (Metric)
|
vehWidth | The width of the truck in feet and inches or meters depending on vehDimUnits .
| vehWidth=96%22 vehWidth=2.4384 (Metric)
|
vehWeight | The weight of the truck in pounds or kilograms depending on vehDimUnits .
| vehWeight=80000 vehWeight=36287 (Metric)
|
LCV | Indicates whether the truck is a multi-trailer or longer combination vehicle. True False (Default) | LCV=false
|
useTraffic | Indicates whether or not to use traffic data. When set to true, the routing algorithm will consider traffic closures when selecting the route and use historical traffic patterns to calculate the trip’s ETA and travel time. If set to true, and the trip’s departure time is also set to within 15 minutes of the current time, real-time traffic data will be used for the first 15 miles and historical traffic patterns will be used for the remainder of the route. (By default, useTraffic is false, and ETA and travel time are computed using Trimble Maps’s average road speeds by road class.)
| useTraffic=false
|
ferryDiscourage | Indicates whether or not to discourage the use of ferries when creating the route. True False (Default) | ferryDiscourage=false
|
sideOfStreetAdherence | How strict to be in order to avoid the destination being on the opposite side of the street. 0 - Off (Default) 1- Minimal 2 - Moderate 3 - Average 4 - Strict 5 - Adhere 6 - StronglyAdhere | sideOfStreetAdherence=0
|
Step 3: Call for the route path
Sample request - North America
GET https://pcmiler.alk.com/apis/rest/v1.0/Service.svc/route/routepath?stops=-75.173297%2C39.942892%3B-74.83153%2C39.61703%3B-74.438942%2C39.362469&vehType=0&routeType=0&hwyOnly=false&overrideClass=0&distUnits=0&tollRoads=3&openBorders=true&overrideRestrict=false&hazMat=0&vehDimUnits=0&vehHeight=13%276%22&vehLength=48%270%22&vehWidth=96%22&vehWeight=80000&axles=5&LCV=false&region=4&useTraffic=false&ferryDiscourage=false&sideOfStreetAdherence
Authorization: YOURAPIKEY
Sample response - North America
{
"type": "Feature",
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
-75.173297,
39.942892
],
[
-75.173329,
39.942744
],
[
-75.173883,
39.942813
],
[
-75.174107,
39.941809
],
[
-75.174161,
39.941416
],
[
-75.174251,
39.941004
],
[
-75.174358,
39.940519
],
[
-75.174462,
39.940042
],
[
-75.17455,
39.939643
],
[
-75.174623,
39.939309
],
[
-75.174727,
39.938831
],
[
-75.174182,
39.938766
],
[
-75.173708,
39.93871
],
[
-75.173151,
39.938643
],
[
-75.172673,
39.938586
],
[
-75.172199,
39.938529
],
[
-75.171597,
39.938459
],
[
-75.171056,
39.938393
],
[
-75.170914,
39.938377
],
[
-75.170659,
39.938349
],
[
-75.170017,
39.938278
],
[
-75.16844,
39.938103
],
[
-75.167349,
39.937955
],
[
-75.166819,
39.937883
],
[
-75.166967,
39.937208
],
[
-75.167064,
39.936746
],
[
-75.167298,
39.935693
],
[
-75.167632,
39.934149
],
[
-75.167898,
39.93294
],
[
-75.168169,
39.931707
],
[
-75.168427,
39.93048
],
[
-75.168698,
39.929273
],
[
-75.168831,
39.928649
],
[
-75.168964,
39.928047
],
[
-75.169228,
39.926823
],
[
-75.169405,
39.926011
],
[
-75.169496,
39.925596
],
[
-75.169512,
39.925511
],
[
-75.169751,
39.924397
],
[
-75.171287,
39.917326
],
[
-75.171383,
39.916892
],
[
-75.1714,
39.916798
],
[
-75.171943,
39.914255
],
[
-75.172452,
39.913076
],
[
-75.172479,
39.912997
],
[
-75.172873,
39.911282
],
[
-75.173151,
39.910926
],
[
-75.173528,
39.91081
],
[
-75.173789,
39.910908
],
[
-75.173955,
39.911148
],
[
-75.17371,
39.912221
],
[
-75.173466,
39.912364
],
[
-75.171777,
39.912193
],
[
-75.171414,
39.912183
],
[
-75.168375,
39.911762
],
[
-75.166608,
39.911523
],
[
-75.166156,
39.911466
],
[
-75.162272,
39.910978
],
[
-75.15907,
39.91051
],
[
-75.158408,
39.910358
],
[
-75.158206,
39.910312
],
[
-75.155591,
39.90953
],
[
-75.154614,
39.909328
],
[
-75.152616,
39.909104
],
[
-75.147935,
39.908314
],
[
-75.136668,
39.906375
],
[
-75.129511,
39.90515
],
[
-75.123476,
39.904108
],
[
-75.117117,
39.903062
],
[
-75.11687,
39.903019
],
[
-75.116114,
39.902892
],
[
-75.114251,
39.902474
],
[
-75.112519,
39.901678
],
[
-75.110969,
39.900386
],
[
-75.11007,
39.899235
],
[
-75.109913,
39.89901
],
[
-75.108115,
39.896106
],
[
-75.10686,
39.893503
],
[
-75.106187,
39.891898
],
[
-75.106042,
39.891542
],
[
-75.105548,
39.890225
],
[
-75.105461,
39.88999
],
[
-75.10442,
39.886737
],
[
-75.103864,
39.884305
],
[
-75.103312,
39.88098
],
[
-75.103004,
39.878641
],
[
-75.102469,
39.874792
],
[
-75.102036,
39.871749
],
[
-75.102006,
39.871501
],
[
-75.102107,
39.868431
],
[
-75.101985,
39.86745
],
[
-75.101274,
39.865449
],
[
-75.101059,
39.864533
],
[
-75.10094,
39.864041
],
[
-75.100566,
39.862494
],
[
-75.100128,
39.860969
],
[
-75.099039,
39.857776
],
[
-75.097712,
39.853867
],
[
-75.097429,
39.853017
],
[
-75.096443,
39.850043
],
[
-75.096362,
39.849806
],
[
-75.091774,
39.836196
],
[
-75.091696,
39.835958
],
[
-75.090928,
39.834154
],
[
-75.090094,
39.832616
],
[
-75.0887,
39.830576
],
[
-75.086581,
39.828199
],
[
-75.084462,
39.82634
],
[
-75.084025,
39.826009
],
[
-75.082421,
39.824778
],
[
-75.082225,
39.824628
],
[
-75.080215,
39.823139
],
[
-75.077272,
39.821281
],
[
-75.075082,
39.82011
],
[
-75.071111,
39.818121
],
[
-75.070438,
39.817721
],
[
-75.070223,
39.817593
],
[
-75.068452,
39.816523
],
[
-75.065754,
39.814639
],
[
-75.064509,
39.813639
],
[
-75.061816,
39.811181
],
[
-75.059802,
39.808886
],
[
-75.058631,
39.807337
],
[
-75.055589,
39.802702
],
[
-75.055356,
39.80234
],
[
-75.052362,
39.797636
],
[
-75.051432,
39.795821
],
[
-75.050754,
39.794235
],
[
-75.050078,
39.792292
],
[
-75.049303,
39.788868
],
[
-75.049261,
39.788623
],
[
-75.049,
39.786466
],
[
-75.048956,
39.779186
],
[
-75.048995,
39.771515
],
[
-75.048996,
39.771266
],
[
-75.04893,
39.770411
],
[
-75.048906,
39.770162
],
[
-75.048616,
39.76877
],
[
-75.047751,
39.767499
],
[
-75.046141,
39.765828
],
[
-75.04433,
39.763581
],
[
-75.042738,
39.761088
],
[
-75.041218,
39.759175
],
[
-75.040302,
39.758344
],
[
-75.038376,
39.757028
],
[
-75.032796,
39.754136
],
[
-75.03017,
39.752609
],
[
-75.028361,
39.751452
],
[
-75.025772,
39.749641
],
[
-75.023269,
39.747654
],
[
-75.021205,
39.745835
],
[
-75.018135,
39.742765
],
[
-75.011363,
39.735883
],
[
-75.011181,
39.735711
],
[
-75.007986,
39.732521
],
[
-75.005985,
39.730369
],
[
-75.000728,
39.724957
],
[
-74.996944,
39.721111
],
[
-74.99524,
39.719554
],
[
-74.992676,
39.717468
],
[
-74.990567,
39.715969
],
[
-74.983137,
39.711117
],
[
-74.982461,
39.710691
],
[
-74.981074,
39.709845
],
[
-74.976862,
39.707944
],
[
-74.973743,
39.706789
],
[
-74.97249,
39.70641
],
[
-74.968417,
39.705515
],
[
-74.954975,
39.702744
],
[
-74.94919,
39.701323
],
[
-74.94516,
39.700153
],
[
-74.940165,
39.698489
],
[
-74.935329,
39.696633
],
[
-74.934988,
39.696496
],
[
-74.924738,
39.692341
],
[
-74.921673,
39.690974
],
[
-74.918123,
39.689221
],
[
-74.914269,
39.687042
],
[
-74.910794,
39.684785
],
[
-74.906479,
39.681478
],
[
-74.90405,
39.679386
],
[
-74.900552,
39.675974
],
[
-74.893882,
39.669619
],
[
-74.893702,
39.669446
],
[
-74.893079,
39.6689
],
[
-74.890065,
39.666087
],
[
-74.889751,
39.665785
],
[
-74.889612,
39.665651
],
[
-74.889327,
39.665377
],
[
-74.888969,
39.665032
],
[
-74.883129,
39.659431
],
[
-74.875216,
39.651863
],
[
-74.874348,
39.651036
],
[
-74.872776,
39.649524
],
[
-74.872638,
39.649393
],
[
-74.872613,
39.649369
],
[
-74.87249,
39.649253
],
[
-74.87095,
39.647792
],
[
-74.870189,
39.647068
],
[
-74.869632,
39.646516
],
[
-74.869468,
39.646349
],
[
-74.869286,
39.646165
],
[
-74.86552,
39.642544
],
[
-74.85909,
39.636362
],
[
-74.85744,
39.634772
],
[
-74.856205,
39.633658
],
[
-74.854469,
39.632206
],
[
-74.85186,
39.630172
],
[
-74.850974,
39.62954
],
[
-74.84933,
39.628409
],
[
-74.849085,
39.628241
],
[
-74.843037,
39.624121
],
[
-74.842842,
39.623983
],
[
-74.842791,
39.623948
],
[
-74.842688,
39.623875
],
[
-74.842525,
39.62376
],
[
-74.838481,
39.620889
],
[
-74.835823,
39.619054
],
[
-74.834864,
39.618412
],
[
-74.834144,
39.617922
],
[
-74.834021,
39.617767
],
[
-74.833885,
39.617603
],
[
-74.833766,
39.617479
],
[
-74.833659,
39.617337
],
[
-74.833563,
39.617189
],
[
-74.833451,
39.616975
],
[
-74.833387,
39.616769
],
[
-74.833373,
39.616354
],
[
-74.833357,
39.616018
],
[
-74.833346,
39.615782
],
[
-74.83329,
39.615623
],
[
-74.833132,
39.615419
],
[
-74.830538,
39.61363
],
[
-74.830414,
39.613581
],
[
-74.83031,
39.613553
],
[
-74.829812,
39.613438
],
[
-74.829499,
39.613435
],
[
-74.828699,
39.614131
],
[
-74.828619,
39.6142
],
[
-74.828585,
39.61423
],
[
-74.828478,
39.614323
],
[
-74.828451,
39.614347
],
[
-74.828398,
39.614393
],
[
-74.82679,
39.615787
],
[
-74.826488,
39.616045
],
[
-74.825874,
39.616616
],
[
-74.82578,
39.616703
],
[
-74.825689,
39.616739
],
[
-74.825509,
39.61678
],
[
-74.825156,
39.61682
],
[
-74.825096,
39.616851
],
[
-74.82505,
39.616918
],
[
-74.825065,
39.61702
],
[
-74.82512,
39.617086
],
[
-74.825251,
39.61717
],
[
-74.825424,
39.617185
],
[
-74.825559,
39.61716
],
[
-74.825764,
39.616983
],
[
-74.826024,
39.616743
],
[
-74.826509,
39.616305
],
[
-74.82676,
39.61608
],
[
-74.827095,
39.615781
],
[
-74.827453,
39.615631
],
[
-74.827664,
39.615578
],
[
-74.827881,
39.615551
],
[
-74.828128,
39.615578
],
[
-74.829135,
39.615838
],
[
-74.829849,
39.616023
],
[
-74.830563,
39.616222
],
[
-74.830961,
39.616378
],
[
-74.83131,
39.616534
],
[
-74.831762,
39.616794
],
[
-74.83153,
39.61703
]
],
[
[
-74.83153,
39.61703
],
[
-74.831762,
39.616794
],
[
-74.831794,
39.616812
],
[
-74.832909,
39.617503
],
[
-74.83393,
39.618234
],
[
-74.835687,
39.619395
],
[
-74.838345,
39.62123
],
[
-74.842438,
39.623919
],
[
-74.842554,
39.624001
],
[
-74.84265,
39.624069
],
[
-74.842702,
39.624106
],
[
-74.84295,
39.62428
],
[
-74.849029,
39.628398
],
[
-74.849277,
39.628574
],
[
-74.851769,
39.630331
],
[
-74.854008,
39.632056
],
[
-74.85574,
39.633513
],
[
-74.856978,
39.634596
],
[
-74.858702,
39.636217
],
[
-74.865117,
39.642394
],
[
-74.869183,
39.646293
],
[
-74.869393,
39.646512
],
[
-74.869509,
39.646633
],
[
-74.870049,
39.647161
],
[
-74.87052,
39.64761
],
[
-74.871295,
39.64838
],
[
-74.871473,
39.648556
],
[
-74.871514,
39.648657
],
[
-74.871644,
39.648876
],
[
-74.871777,
39.649166
],
[
-74.871826,
39.649397
],
[
-74.871879,
39.649789
],
[
-74.871933,
39.650586
],
[
-74.872007,
39.651214
],
[
-74.872053,
39.651396
],
[
-74.872095,
39.651528
],
[
-74.87227,
39.652312
],
[
-74.872546,
39.653012
],
[
-74.872764,
39.653383
],
[
-74.873049,
39.653762
],
[
-74.873355,
39.654074
],
[
-74.873804,
39.654438
],
[
-74.874549,
39.654922
],
[
-74.876137,
39.655856
],
[
-74.87644,
39.656075
],
[
-74.87682,
39.656386
],
[
-74.877026,
39.656584
],
[
-74.877267,
39.656844
],
[
-74.877547,
39.657222
],
[
-74.877793,
39.65767
],
[
-74.878628,
39.659565
],
[
-74.880512,
39.663838
],
[
-74.880679,
39.664226
],
[
-74.880858,
39.664619
],
[
-74.883768,
39.671308
],
[
-74.883867,
39.671538
],
[
-74.883969,
39.671766
],
[
-74.886633,
39.677748
],
[
-74.886735,
39.677977
],
[
-74.886835,
39.678205
],
[
-74.887332,
39.679336
],
[
-74.887432,
39.679881
],
[
-74.887443,
39.680016
],
[
-74.887429,
39.681177
],
[
-74.887425,
39.681443
],
[
-74.88753,
39.681912
],
[
-74.887854,
39.682669
],
[
-74.88849,
39.683337
],
[
-74.888696,
39.683378
],
[
-74.888964,
39.683233
],
[
-74.888552,
39.682221
],
[
-74.888485,
39.682053
],
[
-74.887332,
39.679336
],
[
-74.883768,
39.671308
],
[
-74.880679,
39.664226
],
[
-74.877793,
39.65767
],
[
-74.877267,
39.656844
],
[
-74.876137,
39.655856
],
[
-74.873804,
39.654438
],
[
-74.873049,
39.653762
],
[
-74.872546,
39.653012
],
[
-74.872095,
39.651528
],
[
-74.872425,
39.649856
],
[
-74.872836,
39.648878
],
[
-74.87328,
39.64829
],
[
-74.873778,
39.64809
],
[
-74.874389,
39.648274
],
[
-74.877453,
39.651903
],
[
-74.877662,
39.652314
],
[
-74.877573,
39.652579
],
[
-74.877129,
39.65286
],
[
-74.876552,
39.652811
],
[
-74.876268,
39.652615
],
[
-74.874737,
39.651278
],
[
-74.874348,
39.651036
],
[
-74.85909,
39.636362
],
[
-74.856205,
39.633658
],
[
-74.854469,
39.632206
],
[
-74.85186,
39.630172
],
[
-74.849085,
39.628241
],
[
-74.843037,
39.624121
],
[
-74.838481,
39.620889
],
[
-74.834864,
39.618412
],
[
-74.834144,
39.617922
],
[
-74.830161,
39.615234
],
[
-74.825058,
39.611732
],
[
-74.821522,
39.609226
],
[
-74.818037,
39.606867
],
[
-74.803813,
39.59715
],
[
-74.800044,
39.594652
],
[
-74.795085,
39.591149
],
[
-74.794799,
39.590958
],
[
-74.785554,
39.58487
],
[
-74.778567,
39.580385
],
[
-74.77584,
39.578475
],
[
-74.771137,
39.575343
],
[
-74.754355,
39.564364
],
[
-74.747908,
39.559078
],
[
-74.744524,
39.556084
],
[
-74.738732,
39.551208
],
[
-74.73816,
39.550723
],
[
-74.724167,
39.538732
],
[
-74.717899,
39.533604
],
[
-74.716821,
39.532783
],
[
-74.714287,
39.531347
],
[
-74.706092,
39.526183
],
[
-74.69385,
39.51844
],
[
-74.692924,
39.51791
],
[
-74.687739,
39.514183
],
[
-74.68581,
39.512857
],
[
-74.682514,
39.510504
],
[
-74.682219,
39.510296
],
[
-74.679594,
39.508497
],
[
-74.677295,
39.506937
],
[
-74.675102,
39.50544
],
[
-74.671895,
39.503023
],
[
-74.655836,
39.491668
],
[
-74.653764,
39.49024
],
[
-74.640905,
39.481148
],
[
-74.638145,
39.479026
],
[
-74.636625,
39.477444
],
[
-74.635316,
39.475693
],
[
-74.634917,
39.47516
],
[
-74.634176,
39.473954
],
[
-74.633324,
39.47223
],
[
-74.632364,
39.46931
],
[
-74.631729,
39.465008
],
[
-74.631127,
39.46084
],
[
-74.630421,
39.458058
],
[
-74.630241,
39.457607
],
[
-74.62912,
39.455214
],
[
-74.627482,
39.452766
],
[
-74.626264,
39.451342
],
[
-74.624498,
39.449643
],
[
-74.623421,
39.448751
],
[
-74.620485,
39.446766
],
[
-74.618314,
39.445645
],
[
-74.61525,
39.444362
],
[
-74.61449,
39.444058
],
[
-74.604264,
39.440636
],
[
-74.59541,
39.43779
],
[
-74.593194,
39.437039
],
[
-74.59282,
39.436922
],
[
-74.59069,
39.436086
],
[
-74.589576,
39.435506
],
[
-74.587256,
39.433991
],
[
-74.586024,
39.432956
],
[
-74.584621,
39.431539
],
[
-74.581317,
39.428013
],
[
-74.580304,
39.427067
],
[
-74.57841,
39.425654
],
[
-74.577003,
39.424824
],
[
-74.572937,
39.422872
],
[
-74.562906,
39.418133
],
[
-74.559657,
39.416624
],
[
-74.559143,
39.416379
],
[
-74.553426,
39.413698
],
[
-74.552474,
39.413232
],
[
-74.552158,
39.413076
],
[
-74.549662,
39.411872
],
[
-74.548345,
39.411129
],
[
-74.540905,
39.406643
],
[
-74.539228,
39.406034
],
[
-74.53698,
39.405692
],
[
-74.533149,
39.40572
],
[
-74.530558,
39.405219
],
[
-74.527942,
39.403963
],
[
-74.52727,
39.403619
],
[
-74.524298,
39.40206
],
[
-74.524156,
39.401986
],
[
-74.523959,
39.401882
],
[
-74.520707,
39.400161
],
[
-74.520154,
39.399856
],
[
-74.518514,
39.399004
],
[
-74.518368,
39.398929
],
[
-74.518306,
39.398897
],
[
-74.518234,
39.39886
],
[
-74.517104,
39.398272
],
[
-74.517036,
39.398236
],
[
-74.516824,
39.398126
],
[
-74.516781,
39.398104
],
[
-74.516696,
39.398058
],
[
-74.516514,
39.397958
],
[
-74.514993,
39.39714
],
[
-74.514809,
39.397019
],
[
-74.514751,
39.396981
],
[
-74.51441,
39.396756
],
[
-74.513997,
39.396445
],
[
-74.513449,
39.395989
],
[
-74.513019,
39.395614
],
[
-74.512567,
39.395159
],
[
-74.512366,
39.394925
],
[
-74.512115,
39.394625
],
[
-74.511995,
39.394451
],
[
-74.511796,
39.394172
],
[
-74.511638,
39.393875
],
[
-74.511446,
39.393465
],
[
-74.511257,
39.393071
],
[
-74.511067,
39.392648
],
[
-74.510799,
39.392137
],
[
-74.510345,
39.391252
],
[
-74.510114,
39.390786
],
[
-74.509847,
39.390282
],
[
-74.509644,
39.389904
],
[
-74.509287,
39.389355
],
[
-74.509106,
39.389129
],
[
-74.50878,
39.388722
],
[
-74.508357,
39.388281
],
[
-74.507759,
39.387692
],
[
-74.506816,
39.386948
],
[
-74.506343,
39.386629
],
[
-74.506133,
39.386486
],
[
-74.506013,
39.386412
],
[
-74.50565,
39.386188
],
[
-74.505031,
39.385859
],
[
-74.50454,
39.385622
],
[
-74.50391,
39.385348
],
[
-74.502584,
39.384864
],
[
-74.501926,
39.384616
],
[
-74.501289,
39.384376
],
[
-74.499664,
39.38377
],
[
-74.498429,
39.383319
],
[
-74.497571,
39.382999
],
[
-74.496971,
39.382775
],
[
-74.496643,
39.382652
],
[
-74.495258,
39.382132
],
[
-74.494427,
39.381826
],
[
-74.493043,
39.381316
],
[
-74.492492,
39.38111
],
[
-74.491497,
39.380737
],
[
-74.490404,
39.380324
],
[
-74.490145,
39.380227
],
[
-74.489824,
39.380111
],
[
-74.4892,
39.379885
],
[
-74.488971,
39.3798
],
[
-74.488199,
39.379512
],
[
-74.487871,
39.37939
],
[
-74.486456,
39.378866
],
[
-74.486233,
39.378784
],
[
-74.48601,
39.378701
],
[
-74.483351,
39.377705
],
[
-74.482897,
39.377535
],
[
-74.482624,
39.377431
],
[
-74.482324,
39.377309
],
[
-74.482288,
39.377295
],
[
-74.481992,
39.377172
],
[
-74.481949,
39.377152
],
[
-74.481184,
39.376801
],
[
-74.480242,
39.376374
],
[
-74.47962,
39.376092
],
[
-74.479066,
39.375839
],
[
-74.478943,
39.375783
],
[
-74.478913,
39.375768
],
[
-74.478728,
39.375683
],
[
-74.477481,
39.375104
],
[
-74.47257,
39.372856
],
[
-74.470681,
39.371982
],
[
-74.469536,
39.371449
],
[
-74.467591,
39.370557
],
[
-74.46673,
39.370177
],
[
-74.465737,
39.369665
],
[
-74.46499,
39.369272
],
[
-74.463884,
39.368673
],
[
-74.46301,
39.368216
],
[
-74.461946,
39.3678
],
[
-74.460784,
39.367502
],
[
-74.459648,
39.367279
],
[
-74.458415,
39.367091
],
[
-74.457423,
39.366925
],
[
-74.456758,
39.366789
],
[
-74.45647,
39.366723
],
[
-74.455534,
39.366487
],
[
-74.45449,
39.36619
],
[
-74.453253,
39.365849
],
[
-74.451938,
39.365466
],
[
-74.447219,
39.364205
],
[
-74.44675,
39.36408
],
[
-74.445782,
39.363818
],
[
-74.44562,
39.363779
],
[
-74.445198,
39.363659
],
[
-74.44481,
39.36356
],
[
-74.444696,
39.363532
],
[
-74.444653,
39.36352
],
[
-74.444434,
39.363464
],
[
-74.444336,
39.363439
],
[
-74.443759,
39.363293
],
[
-74.443563,
39.363239
],
[
-74.442152,
39.362847
],
[
-74.441782,
39.362754
],
[
-74.441547,
39.36269
],
[
-74.441427,
39.362657
],
[
-74.441417,
39.362654
],
[
-74.441291,
39.362604
],
[
-74.440964,
39.362475
],
[
-74.440864,
39.362427
],
[
-74.440574,
39.362289
],
[
-74.440355,
39.362125
],
[
-74.440243,
39.362032
],
[
-74.440138,
39.361892
],
[
-74.439847,
39.36146
],
[
-74.439578,
39.361072
],
[
-74.439065,
39.360267
],
[
-74.438982,
39.360139
],
[
-74.438742,
39.359775
],
[
-74.438318,
39.359941
],
[
-74.437911,
39.360095
],
[
-74.437268,
39.360344
],
[
-74.436617,
39.360606
],
[
-74.436014,
39.360849
],
[
-74.435362,
39.361109
],
[
-74.435091,
39.361225
],
[
-74.434728,
39.36137
],
[
-74.434102,
39.361632
],
[
-74.433604,
39.361832
],
[
-74.432919,
39.362108
],
[
-74.433779,
39.363416
],
[
-74.434376,
39.363175
],
[
-74.434979,
39.36293
],
[
-74.436242,
39.362421
],
[
-74.437494,
39.361906
],
[
-74.437916,
39.362518
],
[
-74.43799,
39.36264
],
[
-74.43803,
39.362718
],
[
-74.438194,
39.362701
],
[
-74.438644,
39.362656
],
[
-74.439817,
39.362586
],
[
-74.4398,
39.362494
],
[
-74.439796,
39.362426
],
[
-74.439742,
39.362342
],
[
-74.439674,
39.36231
],
[
-74.43959,
39.362302
],
[
-74.43944,
39.362376
],
[
-74.43928,
39.362444
],
[
-74.439138,
39.362468
],
[
-74.438945,
39.362488
],
[
-74.438942,
39.362469
]
]
]
},
"TMinutes": 93,
"TDistance": 74.657,
"properties": null
}
Sample request - Europe
GET https://pcmiler.alk.com/apis/rest/v1.0/Service.svc/route/routepath?stops=2.3522117%2C48.856622%3B3.323442%2C49.376622&region=3&vehType=0&routeType=0&hwyOnly=false&overrideClass=0&distUnits=0&tollRoads=3&openBorders=true&overrideRestrict=false&hazMat=0&tunnelCategory=0&vehDimUnits=1&vehHeight=4.1148&vehLength=14.6304&vehWidth=2.4384&vehWeight=36287&axles=5&LCV=false&useTraffic=false&ferryDiscourage=false&sideOfStreetAdherence
Authorization: YOURAPIKEY
Sample response - Europe
{
"type": "Feature",
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
2.352212,
48.856622
],
[
2.35135,
48.85676
],
[
2.35113,
48.85682
],
[
2.34985,
48.85715
],
[
2.34978,
48.85717
],
[
2.34957,
48.85723
],
[
2.34928,
48.85731
],
[
2.34922,
48.85733
],
[
2.3486,
48.8575
],
[
2.34776,
48.85771
],
[
2.3482,
48.85852
],
[
2.34833,
48.85873
],
[
2.3488,
48.85954
],
[
2.34912,
48.86009
],
[
2.34938,
48.86057
],
[
2.3494,
48.86062
],
[
2.34956,
48.86094
],
[
2.34971,
48.86123
],
[
2.35014,
48.86199
],
[
2.35042,
48.86247
],
[
2.35065,
48.86292
],
[
2.35093,
48.86344
],
[
2.35135,
48.86416
],
[
2.35148,
48.86442
],
[
2.35197,
48.86526
],
[
2.35236,
48.86601
],
[
2.35249,
48.86627
],
[
2.35297,
48.86705
],
[
2.35315,
48.86737
],
[
2.35319,
48.86745
],
[
2.3533,
48.86762
],
[
2.35344,
48.86787
],
[
2.35346,
48.8679
],
[
2.35362,
48.86821
],
[
2.35372,
48.8684
],
[
2.35387,
48.8687
],
[
2.35401,
48.86895
],
[
2.35424,
48.86931
],
[
2.35443,
48.86965
],
[
2.35496,
48.87061
],
[
2.3552,
48.87105
],
[
2.3553,
48.87121
],
[
2.35534,
48.87128
],
[
2.35559,
48.87175
],
[
2.35589,
48.87228
],
[
2.35608,
48.87261
],
[
2.35648,
48.87334
],
[
2.35676,
48.87382
],
[
2.35692,
48.8741
],
[
2.35716,
48.87451
],
[
2.35733,
48.8748
],
[
2.35725,
48.87494
],
[
2.35707,
48.87516
],
[
2.3567,
48.87556
],
[
2.35661,
48.87566
],
[
2.35649,
48.87578
],
[
2.35625,
48.87605
],
[
2.35612,
48.8762
],
[
2.356,
48.87633
],
[
2.35614,
48.87639
],
[
2.35618,
48.87647
],
[
2.35613,
48.87655
],
[
2.35618,
48.87711
],
[
2.35654,
48.87822
],
[
2.35666,
48.8785
],
[
2.35696,
48.87903
],
[
2.35703,
48.87929
],
[
2.35716,
48.87951
],
[
2.35766,
48.88047
],
[
2.35902,
48.88283
],
[
2.3593,
48.88428
],
[
2.35927,
48.88451
],
[
2.35926,
48.88479
],
[
2.35927,
48.8849
],
[
2.35932,
48.88528
],
[
2.35982,
48.88769
],
[
2.35988,
48.88905
],
[
2.35991,
48.89027
],
[
2.35987,
48.8908
],
[
2.35987,
48.89104
],
[
2.35985,
48.89156
],
[
2.35982,
48.892
],
[
2.35947,
48.89426
],
[
2.35942,
48.89459
],
[
2.35936,
48.89508
],
[
2.35931,
48.89554
],
[
2.35914,
48.89784
],
[
2.35935,
48.89807
],
[
2.35934,
48.89856
],
[
2.35934,
48.89873
],
[
2.35938,
48.89911
],
[
2.35942,
48.8995
],
[
2.35942,
48.89985
],
[
2.35941,
48.9004
],
[
2.35928,
48.90128
],
[
2.35893,
48.90181
],
[
2.35887,
48.90246
],
[
2.35861,
48.90574
],
[
2.35857,
48.90622
],
[
2.35825,
48.90966
],
[
2.35818,
48.91173
],
[
2.35781,
48.91537
],
[
2.35759,
48.91849
],
[
2.35735,
48.92153
],
[
2.35727,
48.92209
],
[
2.35694,
48.92624
],
[
2.3571,
48.92709
],
[
2.3573,
48.92748
],
[
2.35791,
48.92811
],
[
2.35948,
48.92885
],
[
2.36186,
48.92937
],
[
2.36543,
48.93029
],
[
2.36555,
48.93032
],
[
2.36753,
48.93084
],
[
2.37221,
48.93209
],
[
2.37422,
48.93259
],
[
2.3769,
48.9331
],
[
2.37824,
48.93334
],
[
2.37846,
48.93338
],
[
2.38151,
48.93369
],
[
2.38831,
48.93395
],
[
2.39443,
48.93416
],
[
2.3949,
48.9342
],
[
2.39812,
48.93454
],
[
2.40138,
48.93511
],
[
2.41281,
48.93775
],
[
2.4169,
48.93869
],
[
2.42756,
48.94119
],
[
2.42819,
48.94133
],
[
2.43275,
48.94247
],
[
2.43572,
48.94347
],
[
2.43772,
48.94433
],
[
2.44192,
48.94648
],
[
2.4494,
48.95049
],
[
2.45827,
48.95527
],
[
2.45842,
48.95535
],
[
2.46243,
48.9575
],
[
2.46294,
48.95778
],
[
2.46741,
48.96024
],
[
2.4699,
48.96177
],
[
2.47167,
48.96297
],
[
2.472,
48.96318
],
[
2.47327,
48.96401
],
[
2.47487,
48.96478
],
[
2.47659,
48.9656
],
[
2.47718,
48.9659
],
[
2.47779,
48.96631
],
[
2.47874,
48.96704
],
[
2.47996,
48.96808
],
[
2.48204,
48.96958
],
[
2.48378,
48.97074
],
[
2.48588,
48.97211
],
[
2.48649,
48.97247
],
[
2.48752,
48.97297
],
[
2.4886,
48.97324
],
[
2.4893,
48.9733
],
[
2.49051,
48.97321
],
[
2.49207,
48.97287
],
[
2.49297,
48.97261
],
[
2.49843,
48.97113
],
[
2.49904,
48.97095
],
[
2.50143,
48.97021
],
[
2.50611,
48.96877
],
[
2.50695,
48.96852
],
[
2.50806,
48.9682
],
[
2.51228,
48.96695
],
[
2.51376,
48.96651
],
[
2.51743,
48.96525
],
[
2.52086,
48.96364
],
[
2.52318,
48.96204
],
[
2.5253,
48.95955
],
[
2.52644,
48.95874
],
[
2.52739,
48.95834
],
[
2.52929,
48.95799
],
[
2.53071,
48.95798
],
[
2.53357,
48.95838
],
[
2.53875,
48.95968
],
[
2.54274,
48.96087
],
[
2.55622,
48.9653
],
[
2.5642,
48.96794
],
[
2.56799,
48.96926
],
[
2.57042,
48.97019
],
[
2.57357,
48.97148
],
[
2.57917,
48.97389
],
[
2.57922,
48.97392
],
[
2.57986,
48.97427
],
[
2.58782,
48.97775
],
[
2.59167,
48.97943
],
[
2.62224,
48.99279
],
[
2.62591,
48.99444
],
[
2.62903,
48.99596
],
[
2.63266,
48.99782
],
[
2.63751,
49.00053
],
[
2.63938,
49.00165
],
[
2.64429,
49.00476
],
[
2.64731,
49.00685
],
[
2.65111,
49.00969
],
[
2.65356,
49.01164
],
[
2.65796,
49.01547
],
[
2.66103,
49.01842
],
[
2.6726,
49.02994
],
[
2.6764,
49.03369
],
[
2.67932,
49.03642
],
[
2.68045,
49.03742
],
[
2.68417,
49.04047
],
[
2.68832,
49.04349
],
[
2.69302,
49.04696
],
[
2.6957,
49.04943
],
[
2.6973,
49.05123
],
[
2.699938,
49.055104
],
[
2.70214,
49.05879
],
[
2.70284,
49.05982
],
[
2.7043,
49.06158
],
[
2.7056,
49.06283
],
[
2.7098,
49.06617
],
[
2.72379,
49.07681
],
[
2.72637,
49.07878
],
[
2.72793,
49.08012
],
[
2.72893,
49.08114
],
[
2.7304,
49.08308
],
[
2.73201,
49.08625
],
[
2.73479,
49.09236
],
[
2.73616,
49.09505
],
[
2.73777,
49.09722
],
[
2.73878,
49.09825
],
[
2.74024,
49.09959
],
[
2.74137,
49.10044
],
[
2.74358,
49.10187
],
[
2.74629,
49.10324
],
[
2.74858,
49.10414
],
[
2.75176,
49.1051
],
[
2.7552,
49.10582
],
[
2.75967,
49.10677
],
[
2.76107,
49.10717
],
[
2.7645,
49.10846
],
[
2.76623,
49.10929
],
[
2.76786,
49.11026
],
[
2.7703,
49.11201
],
[
2.78714,
49.12473
],
[
2.79554,
49.13104
],
[
2.79693,
49.13236
],
[
2.79781,
49.13357
],
[
2.79842,
49.13499
],
[
2.79863,
49.13592
],
[
2.79897,
49.13903
],
[
2.79928,
49.14034
],
[
2.80011,
49.14191
],
[
2.80126,
49.1432
],
[
2.80175,
49.1436
],
[
2.8036,
49.1448
],
[
2.80839,
49.14681
],
[
2.80974,
49.14727
],
[
2.81174,
49.14773
],
[
2.81489,
49.14803
],
[
2.81879,
49.14787
],
[
2.82128,
49.14785
],
[
2.82326,
49.14804
],
[
2.82564,
49.14856
],
[
2.82698,
49.14899
],
[
2.83096,
49.15073
],
[
2.83285,
49.15159
],
[
2.8371,
49.15347
],
[
2.84049,
49.15412
],
[
2.84493,
49.15484
],
[
2.84759,
49.15543
],
[
2.85004,
49.15624
],
[
2.85175,
49.15693
],
[
2.85372,
49.15789
],
[
2.85561,
49.15912
],
[
2.85766,
49.16089
],
[
2.85936,
49.16284
],
[
2.85956,
49.16359
],
[
2.85924,
49.16464
],
[
2.85954,
49.16481
],
[
2.86215,
49.16611
],
[
2.86254,
49.16632
],
[
2.86602,
49.16824
],
[
2.86962,
49.17001
],
[
2.87988,
49.17564
],
[
2.88223,
49.17713
],
[
2.88747,
49.18004
],
[
2.88918,
49.18115
],
[
2.88988,
49.18154
],
[
2.89303,
49.18328
],
[
2.89972,
49.18696
],
[
2.90571,
49.19025
],
[
2.90905,
49.19199
],
[
2.91181,
49.19296
],
[
2.91588,
49.19375
],
[
2.91736,
49.19414
],
[
2.9192,
49.19479
],
[
2.9208,
49.19561
],
[
2.9217,
49.19619
],
[
2.93446,
49.20592
],
[
2.93718,
49.20729
],
[
2.94169,
49.20891
],
[
2.94361,
49.20942
],
[
2.94602,
49.20987
],
[
2.95028,
49.21047
],
[
2.95297,
49.21106
],
[
2.95427,
49.21145
],
[
2.95794,
49.21278
],
[
2.95968,
49.21361
],
[
2.96207,
49.21512
],
[
2.9635,
49.21634
],
[
2.96437,
49.21727
],
[
2.96726,
49.22089
],
[
2.96871,
49.22238
],
[
2.97079,
49.22396
],
[
2.97478,
49.22654
],
[
2.97675,
49.22767
],
[
2.98217,
49.23011
],
[
2.98432,
49.23094
],
[
2.98747,
49.23178
],
[
2.9928,
49.23262
],
[
2.99428,
49.2329
],
[
2.99725,
49.2337
],
[
2.99986,
49.23474
],
[
3.00414,
49.237
],
[
3.00569,
49.23772
],
[
3.00935,
49.23908
],
[
3.01154,
49.23976
],
[
3.01187,
49.23984
],
[
3.01493,
49.24032
],
[
3.01694,
49.24038
],
[
3.0208,
49.2402
],
[
3.02411,
49.24001
],
[
3.02729,
49.24037
],
[
3.02952,
49.24082
],
[
3.03339,
49.2417
],
[
3.03473,
49.24259
],
[
3.03516,
49.24318
],
[
3.03585,
49.24472
],
[
3.03628,
49.24549
],
[
3.03706,
49.24626
],
[
3.0377,
49.24661
],
[
3.03875,
49.24693
],
[
3.04132,
49.24716
],
[
3.04341,
49.24748
],
[
3.05572,
49.25108
],
[
3.05724,
49.25141
],
[
3.06231,
49.25223
],
[
3.06505,
49.25282
],
[
3.06691,
49.25356
],
[
3.06828,
49.25443
],
[
3.07768,
49.2614
],
[
3.07815,
49.26172
],
[
3.08044,
49.26323
],
[
3.083,
49.26441
],
[
3.08483,
49.26501
],
[
3.08715,
49.26558
],
[
3.08871,
49.26585
],
[
3.09089,
49.26606
],
[
3.09602,
49.26612
],
[
3.102,
49.26612
],
[
3.10422,
49.26611
],
[
3.10663,
49.26613
],
[
3.12053,
49.26613
],
[
3.12871,
49.26611
],
[
3.12997,
49.26615
],
[
3.13071,
49.2662
],
[
3.13182,
49.26642
],
[
3.13339,
49.26692
],
[
3.1357,
49.26797
],
[
3.13814,
49.26916
],
[
3.14626,
49.27399
],
[
3.15252,
49.2783
],
[
3.16395,
49.28481
],
[
3.16677,
49.28646
],
[
3.16801,
49.28738
],
[
3.17033,
49.28933
],
[
3.17237,
49.29075
],
[
3.17395,
49.2916
],
[
3.17742,
49.29305
],
[
3.18021,
49.29442
],
[
3.18229,
49.29534
],
[
3.18452,
49.29586
],
[
3.1867,
49.29597
],
[
3.19094,
49.29592
],
[
3.19346,
49.29626
],
[
3.19511,
49.29667
],
[
3.19692,
49.29733
],
[
3.19868,
49.2982
],
[
3.20316,
49.30086
],
[
3.20503,
49.30151
],
[
3.20662,
49.3018
],
[
3.21175,
49.30226
],
[
3.2131,
49.30258
],
[
3.21473,
49.30322
],
[
3.22021,
49.30574
],
[
3.22279,
49.30719
],
[
3.22547,
49.30873
],
[
3.22792,
49.31066
],
[
3.22992,
49.31208
],
[
3.24091,
49.31946
],
[
3.2418,
49.32015
],
[
3.24685,
49.32486
],
[
3.24841,
49.32595
],
[
3.25089,
49.32727
],
[
3.25236,
49.3282
],
[
3.25696,
49.33173
],
[
3.26365,
49.3369
],
[
3.26553,
49.33828
],
[
3.27415,
49.3446
],
[
3.27566,
49.34595
],
[
3.27921,
49.35088
],
[
3.28011,
49.35221
],
[
3.28025,
49.35243
],
[
3.28044,
49.35277
],
[
3.28054,
49.35294
],
[
3.28079,
49.35345
],
[
3.28109,
49.35408
],
[
3.28133,
49.35455
],
[
3.28145,
49.3548
],
[
3.28159,
49.35505
],
[
3.28178,
49.35533
],
[
3.28198,
49.35558
],
[
3.28215,
49.35578
],
[
3.28238,
49.35601
],
[
3.2827,
49.35628
],
[
3.28302,
49.35655
],
[
3.28353,
49.35695
],
[
3.28529,
49.35833
],
[
3.28548,
49.35848
],
[
3.28562,
49.35858
],
[
3.28607,
49.35893
],
[
3.28685,
49.35954
],
[
3.28704,
49.35969
],
[
3.28715,
49.35978
],
[
3.28749,
49.36004
],
[
3.28799,
49.36042
],
[
3.2881,
49.36051
],
[
3.28817,
49.36056
],
[
3.2884,
49.36073
],
[
3.28903,
49.36123
],
[
3.28932,
49.36145
],
[
3.28962,
49.36167
],
[
3.28989,
49.36183
],
[
3.29027,
49.36203
],
[
3.29059,
49.36217
],
[
3.29085,
49.36227
],
[
3.29112,
49.36235
],
[
3.2915,
49.36243
],
[
3.29194,
49.3625
],
[
3.29228,
49.36253
],
[
3.29267,
49.36255
],
[
3.29323,
49.36254
],
[
3.29397,
49.3625
],
[
3.29453,
49.36246
],
[
3.29668,
49.36229
],
[
3.29728,
49.36225
],
[
3.29769,
49.36223
],
[
3.29813,
49.36223
],
[
3.29841,
49.36224
],
[
3.29884,
49.36229
],
[
3.29931,
49.36237
],
[
3.2998,
49.36248
],
[
3.29992,
49.36252
],
[
3.30015,
49.36259
],
[
3.30053,
49.36273
],
[
3.30086,
49.36287
],
[
3.30126,
49.36303
],
[
3.30167,
49.36319
],
[
3.30223,
49.36341
],
[
3.30315,
49.36374
],
[
3.30416,
49.36412
],
[
3.30503,
49.36446
],
[
3.30571,
49.36474
],
[
3.30643,
49.36501
],
[
3.30699,
49.36521
],
[
3.30738,
49.36536
],
[
3.30776,
49.36552
],
[
3.30792,
49.36559
],
[
3.30813,
49.36572
],
[
3.3083,
49.36584
],
[
3.30852,
49.366
],
[
3.30872,
49.36612
],
[
3.30884,
49.36616
],
[
3.30905,
49.36623
],
[
3.30926,
49.36628
],
[
3.30948,
49.36632
],
[
3.30965,
49.36632
],
[
3.30979,
49.36629
],
[
3.30988,
49.36617
],
[
3.30997,
49.36611
],
[
3.31004,
49.36607
],
[
3.31012,
49.36604
],
[
3.31024,
49.36601
],
[
3.31031,
49.366
],
[
3.31039,
49.36599
],
[
3.31065,
49.36593
],
[
3.31078,
49.36587
],
[
3.31092,
49.36579
],
[
3.31102,
49.36571
],
[
3.31114,
49.36558
],
[
3.3114,
49.3653
],
[
3.31147,
49.36523
],
[
3.31165,
49.36504
],
[
3.31202,
49.36467
],
[
3.31273,
49.36394
],
[
3.31307,
49.36359
],
[
3.31352,
49.36315
],
[
3.3139,
49.36277
],
[
3.31402,
49.36266
],
[
3.3142,
49.36248
],
[
3.31429,
49.36234
],
[
3.31449,
49.36215
],
[
3.3148,
49.36183
],
[
3.315,
49.36159
],
[
3.3151,
49.36143
],
[
3.31516,
49.3613
],
[
3.31523,
49.36112
],
[
3.31528,
49.36094
],
[
3.31531,
49.36074
],
[
3.31531,
49.36054
],
[
3.3153,
49.36039
],
[
3.31526,
49.36021
],
[
3.31517,
49.36017
],
[
3.31507,
49.3601
],
[
3.31501,
49.36001
],
[
3.315,
49.35997
],
[
3.315,
49.35989
],
[
3.31503,
49.35982
],
[
3.31507,
49.35977
],
[
3.31517,
49.35971
],
[
3.31526,
49.35968
],
[
3.31535,
49.35966
],
[
3.3155,
49.35966
],
[
3.31564,
49.35969
],
[
3.31572,
49.35972
],
[
3.31579,
49.35976
],
[
3.31585,
49.35983
],
[
3.31588,
49.3599
],
[
3.31588,
49.35999
],
[
3.31585,
49.36007
],
[
3.31578,
49.36015
],
[
3.31591,
49.36046
],
[
3.31616,
49.36071
],
[
3.31622,
49.36077
],
[
3.31631,
49.36085
],
[
3.31639,
49.36094
],
[
3.31648,
49.36105
],
[
3.31653,
49.36111
],
[
3.3166,
49.36119
],
[
3.3168,
49.36142
],
[
3.31695,
49.36152
],
[
3.31719,
49.36175
],
[
3.31724,
49.36174
],
[
3.31736,
49.36175
],
[
3.31748,
49.36179
],
[
3.31754,
49.36184
],
[
3.31757,
49.36191
],
[
3.31757,
49.36197
],
[
3.31753,
49.36204
],
[
3.31746,
49.36209
],
[
3.31739,
49.36212
],
[
3.31731,
49.36213
],
[
3.31721,
49.36213
],
[
3.31717,
49.36222
],
[
3.31714,
49.36229
],
[
3.31711,
49.36237
],
[
3.31709,
49.36244
],
[
3.31708,
49.36254
],
[
3.31707,
49.36265
],
[
3.31708,
49.36273
],
[
3.31711,
49.36283
],
[
3.31715,
49.36294
],
[
3.31721,
49.36303
],
[
3.31728,
49.36313
],
[
3.31735,
49.36322
],
[
3.3175,
49.36341
],
[
3.3176,
49.36353
],
[
3.31769,
49.36362
],
[
3.31783,
49.36375
],
[
3.31796,
49.36384
],
[
3.31818,
49.36398
],
[
3.31833,
49.36407
],
[
3.31848,
49.36418
],
[
3.31858,
49.36427
],
[
3.31868,
49.36439
],
[
3.31876,
49.3645
],
[
3.31884,
49.36459
],
[
3.31893,
49.36468
],
[
3.31902,
49.36476
],
[
3.31919,
49.36477
],
[
3.31931,
49.3648
],
[
3.31943,
49.36484
],
[
3.3196,
49.36492
],
[
3.31977,
49.365
],
[
3.32,
49.36512
],
[
3.32012,
49.36518
],
[
3.32025,
49.36525
],
[
3.32024,
49.36532
],
[
3.3202,
49.36537
],
[
3.31997,
49.36554
],
[
3.32041,
49.36593
],
[
3.3205,
49.36601
],
[
3.32062,
49.36614
],
[
3.3207,
49.36623
],
[
3.32076,
49.36631
],
[
3.32084,
49.3664
],
[
3.32096,
49.36653
],
[
3.32103,
49.36659
],
[
3.32113,
49.36669
],
[
3.32122,
49.36678
],
[
3.32132,
49.36687
],
[
3.32138,
49.36695
],
[
3.32143,
49.36703
],
[
3.32147,
49.3671
],
[
3.32151,
49.36718
],
[
3.32164,
49.36746
],
[
3.32184,
49.36788
],
[
3.32199,
49.36822
],
[
3.32204,
49.36832
],
[
3.32208,
49.36838
],
[
3.32215,
49.36845
],
[
3.32223,
49.3685
],
[
3.32233,
49.36855
],
[
3.32242,
49.36859
],
[
3.32259,
49.36866
],
[
3.32276,
49.36873
],
[
3.32287,
49.36878
],
[
3.32296,
49.36883
],
[
3.32306,
49.36888
],
[
3.32314,
49.36891
],
[
3.32326,
49.36894
],
[
3.3234,
49.36896
],
[
3.32355,
49.36897
],
[
3.32371,
49.36897
],
[
3.3239,
49.36894
],
[
3.32391,
49.3689
],
[
3.32395,
49.36888
],
[
3.32401,
49.36887
],
[
3.32407,
49.36888
],
[
3.32411,
49.3689
],
[
3.32412,
49.36894
],
[
3.32411,
49.36898
],
[
3.32407,
49.369
],
[
3.32401,
49.36901
],
[
3.32371,
49.36984
],
[
3.3236,
49.37013
],
[
3.32353,
49.37028
],
[
3.32348,
49.37038
],
[
3.32342,
49.37049
],
[
3.32325,
49.37074
],
[
3.32329,
49.37075
],
[
3.32336,
49.37078
],
[
3.3234,
49.37081
],
[
3.32346,
49.37086
],
[
3.32348,
49.37092
],
[
3.32347,
49.37099
],
[
3.32358,
49.37101
],
[
3.3237,
49.37107
],
[
3.32375,
49.37116
],
[
3.32403,
49.37161
],
[
3.32408,
49.37169
],
[
3.32411,
49.37176
],
[
3.32412,
49.37183
],
[
3.32453,
49.37209
],
[
3.32477,
49.37228
],
[
3.325,
49.37255
],
[
3.32514,
49.37274
],
[
3.32523,
49.37278
],
[
3.32538,
49.37284
],
[
3.3255,
49.37289
],
[
3.32559,
49.37292
],
[
3.32575,
49.37298
],
[
3.32593,
49.37304
],
[
3.32605,
49.37308
],
[
3.32615,
49.37311
],
[
3.32629,
49.37316
],
[
3.32636,
49.37319
],
[
3.32654,
49.37328
],
[
3.32662,
49.37334
],
[
3.32669,
49.37341
],
[
3.32675,
49.37348
],
[
3.32701,
49.37383
],
[
3.32709,
49.37394
],
[
3.32725,
49.37409
],
[
3.32736,
49.37416
],
[
3.32761,
49.37431
],
[
3.32786,
49.37444
],
[
3.32804,
49.37455
],
[
3.32827,
49.37467
],
[
3.32833,
49.37465
],
[
3.32838,
49.37464
],
[
3.32843,
49.37464
],
[
3.32848,
49.37465
],
[
3.32851,
49.37467
],
[
3.32855,
49.3747
],
[
3.32856,
49.37474
],
[
3.32854,
49.37479
],
[
3.32849,
49.37483
],
[
3.32842,
49.37485
],
[
3.32834,
49.37485
],
[
3.32826,
49.37483
],
[
3.32822,
49.37479
],
[
3.32822,
49.37475
],
[
3.32802,
49.37469
],
[
3.32771,
49.37463
],
[
3.32707,
49.37453
],
[
3.32646,
49.37444
],
[
3.32623,
49.37438
],
[
3.32592,
49.37433
],
[
3.32504,
49.3742
],
[
3.32488,
49.37418
],
[
3.32439,
49.3741
],
[
3.32352,
49.37396
],
[
3.32333,
49.37394
],
[
3.32306,
49.37395
],
[
3.32282,
49.37397
],
[
3.32251,
49.37406
],
[
3.32226,
49.37418
],
[
3.32213,
49.37428
],
[
3.32202,
49.37448
],
[
3.32201,
49.37452
],
[
3.32196,
49.37462
],
[
3.32193,
49.37477
],
[
3.32188,
49.375
],
[
3.32186,
49.37519
],
[
3.32182,
49.3758
],
[
3.32233,
49.37581
],
[
3.32239,
49.37583
],
[
3.32253,
49.37586
],
[
3.32262,
49.37592
],
[
3.32275,
49.37605
],
[
3.32285,
49.3761
],
[
3.32305,
49.37615
],
[
3.32335,
49.37621
],
[
3.323631,
49.376275
],
[
3.323442,
49.376622
]
]
]
},
"TMinutes": 103,
"TDistance": 64.136,
"properties": null