You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added support for Routes API including origin, destination, and intermediate waypoints.
- Added unit and E2E tests for Routes API functionality.
- Updated README.md with usage examples for the Routes API.
Copy file name to clipboardExpand all lines: README.md
+51-8Lines changed: 51 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,4 @@
1
+
1
2
Node.js Client for Google Maps Services
2
3
=======================================
3
4
@@ -20,20 +21,21 @@ application.
20
21
The Node.js Client for Google Maps Services is a Node.js Client library
21
22
for the following Google Maps APIs:
22
23
23
-
-[Directions API]
24
-
-[Distance Matrix API]
25
-
-[Elevation API]
26
-
-[Geocoding API]
27
-
-[Places API]
28
-
-[Roads API]
29
-
-[Time Zone API]
24
+
-[Directions API]
25
+
-[Distance Matrix API]
26
+
-[Elevation API]
27
+
-[Geocoding API]
28
+
-[Places API]
29
+
-[Roads API]
30
+
-[Time Zone API]
31
+
-[Routes API]
30
32
31
33
Keep in mind that the same [terms and conditions](https://developers.google.com/maps/terms)
32
34
apply to usage of the APIs when they're accessed through this library.
33
35
34
36
## Attention!
35
37
36
-
This library is designed for server-side Node.js applications. Attempting to use it client-side, in either the browser or any other environment like React Native, may in some cases work, but mostly will not. Please refrain from reporting issues with these environments when attempting to use them, since **server-side Node.js applications is the only supported environment for this library**. For other environments, try the [Maps JavaScript API], which contains a comparable feature set, and is explicitly intended for use with client-side JavaScript.
38
+
This library is designed for server-side Node.js applications. Attempting to use it client-side, in either the browser or any other environment like React Native, may in some cases work, but mostly will not. Please refrain from reporting issues with these environments when attempting to use them, since **server-side Node.js applications is the only supported environment for this library**. For other environments, try the [Maps JavaScript API], which contains a comparable feature set, and is explicitly in...
The generated reference documentation can be found [here](https://googlemaps.github.io/google-maps-services-js/). The TypeScript types are the authoritative documentation for this library and may differ slightly from the descriptions.
@@ -132,6 +173,7 @@ client
132
173
});
133
174
```
134
175
176
+
135
177
The primary differences are in the following table.
136
178
137
179
| Old | New |
@@ -198,6 +240,7 @@ If you find a bug, or have a feature suggestion, please
198
240
[Time Zone API]: https://developers.google.com/maps/documentation/timezone/
0 commit comments