I am writing an iPhone application that should interact with the Google Maps API, so I have to use JavaScript (please correct me if I am mistaken) in order to access the results and the route created.
Since JavaScript support in native iPhone apps is pretty bad and slow, my idea was to ask the remote web server to do this job for me. This server will run Apache and PHP.
So my question is: is it possible to run JavaScript on the server side? And if possible, how would you do it?
source
share