is it possible to use the google.maps api library on the node.js server side?

google-maps-api-3, node.js

Solution

You could use a module like node-googlemaps https://github.com/moshen/node-googlemaps that has already wrapped the API for you. Or, you could use any node module that will help you make API requests:

Mikeal's Request: https://github.com/mikeal/request

Restler: https://github.com/danwrong/restler

Although, I'm not sure about the utility methods specifically.

Problem

I am working on google map application which uses the google map version3 api, in particular the utility methods in google.maps.geometry.encoding, such as decodePath, encodePath, computeDistanceBetween, interpolate, in order to compute where the places In the 1st version of web app, much of application logic is on the web broswer, and now I want to move some logic to the node.js based server. however, since the application depends on google api, I wonder is there a way that I can still use google map api on the node.js server thanks in advance

Original source