Integration of Google Places search API in Node JS

Integration of Google Places search API in Node JS

05 January 2021

Introduction

If you want to add place search and want to display places on Google map using NodeJS then you are at the right place.

Google provides a feature of searching places based on the latitude and longitude or we can say location. Google gives Places API Requests, NearBy Search API Requests to search place information like shops, hospitals, Grocery stores, Petrol pumps, Restaurants nearby you.

Following are the key points which are required when you search for any place:

  • Radius
  • Location (Latitude and Longitude)
  • Place’s name / Category of place’s name like Restaurant

Type of APIs and its usage

Steps to Calling APIs

First Step: Get API key for Google Places API

  • Create Google Developer Account and add project
  • Enable Billing Account
  • Enable Places API
  • Go to Google Cloud Console
  • Go to the project from the projects dropdown
  • Go to API and Services and then Credentials Page
  • Hit the Create Credential button
  • Hit the API Key button
  • In pop up, you can view the API Key
  • That’s it, in the API URL start passing your API Key to make it work. You can call any places API with this API Key from the Postman tool.

Clients Available

  • NodeJS – https://github.com/googlemaps/google-maps-services-js
  • Java – https://github.com/googlemaps/google-maps-services-java
  • Python – https://github.com/googlemaps/google-maps-services-python
  • Go – https://github.com/googlemaps/google-maps-services-go
  • ObjectiveC – https://github.com/google/google-api-objectivec-client-for-rest
  • GoogleAPI Java – https://developers.google.com/api-client-library/java/google-api-java-client/dev-guide

Conclusion

To search the places by location and search string we can use Google’s Place APIs. It has different options and APIs based on the requirement we can consume them directly by generating the API key. We can have data in both JSON and XML format. It is easy to integrate and nice to have for any requirement where we need to display places in our application.

search
Blog Categories
Request a quote