nicco82
nicco82

Reputation: 179

google maps nodejs

Is it allowed to use google maps in the server side without actually displaying the map? I've searched around and it seems it is not but I cans see there are nodeJs plugins for Google Maps. I would like to use the directionService with node js. If it is allowed do I need to put the Google logo somewhere?

Thanks

EDIT: Here's how I've done it gist

Upvotes: 4

Views: 1338

Answers (1)

josh3736
josh3736

Reputation: 145162

You're absolutely free to call the API from your node server – it's a simple REST request – but the terms (10.1.1(g)) require you to ultimately display the results on a Google Map.

Upvotes: 5

Related Questions