Skip to content

Commit

Permalink
docs: highlight API key in Quick Start example (googlemaps#1014)
Browse files Browse the repository at this point in the history
Replaces the invalid API key in the first example with an env-variable, making it clear it has to be provided by the user.

fixes googlemaps#1013 
---------

Co-authored-by: Martin Schuhfuss <m.schuhfuss@gmail.com>
  • Loading branch information
bennycode and usefulthink committed Sep 12, 2023
1 parent dfca658 commit 22e6139
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ This library is designed for server-side Node.js applications. Attempting to use

Below is a simple example calling the elevation method on the client class.

Import the Google Maps Client using Typescript and ES6 module:
Import the Google Maps Client using TypeScript and ES6 module:

```js
import {Client} from "@googlemaps/google-maps-services-js";
Expand All @@ -61,7 +61,7 @@ client
.elevation({
params: {
locations: [{ lat: 45, lng: -110 }],
key: "asdf",
key: process.env.GOOGLE_MAPS_API_KEY,
},
timeout: 1000, // milliseconds
})
Expand Down

0 comments on commit 22e6139

Please sign in to comment.