1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
"version" : "0.1",
"base_url" : "http://maps.googleapis.com/maps/api",
"methods" : {
"distancematrix" : {
"path" : "/distancematrix/:format",
"method" : "GET",
"required_params" : [
"format",
"origins",
"destinations",
"sensor"
],
"optional_params" : [
"mode",
"language",
"avoid",
"units"
]
}
},
"authority" : "http://github.com/SPORE",
"name" : "Google Maps",
"meta" : {
"documentation" : "http://code.google.com/apis/maps/documentation/distancematrix/",
"module" : "Distance Matrix"
}
}
|