1.0.1 • Published 6 years ago

latihan-el v1.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
6 years ago

Google API documentation

How to install integration-google-api

npm install latihan-el --save

Usage

'use strict';

const google = require('integration-google-api');

let gps = "-33.8670522,151.1957362";
let radius = 500;
let type = "restaurant";
let data = {
	gps : gps,
	radius : radius,
	type: type
};

google.googleApi(data).then(res => {
console.log(res);
});