json - Is it possible to get current time of any city using Single google API in NodeJS -


i'm using below mentioned 2 api calls geocode , timezone of particular city.

  1. https://maps.googleapis.com/maps/api/geocode/json?address=' + address;
  2. https://maps.googleapis.com/maps/api/timezone/json?location=' + loc + '&timestamp=' + timestamp + '&key=' + apikey ;

in nodejs.

but need use single api current time offset values of city instead of using 2 api calls. possible?


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -