Forum Post: RE: Rollbase selectQuery and Google maps callstack

  • Thread starter Thread starter romain.pennes@foederis.fr
  • Start date Start date
Status
Not open for further replies.
R

romain.pennes@foederis.fr

Guest
Hi, Your request ends up calling: maps.googleapis.com/.../json Which doesn't work (because it requires SSL and your key seems wrong). If you call this instead: maps.googleapis.com/.../json It seems to work fine. Then, I think you also need to call the "rbv_api.stringToJson" function. The following works: function getLat() { var result = rbv_api.stringToJson(rbv_api.sendHttpGet(" maps.googleapis.com/.../json )); return result.results[0].geometry.location.lat; } getLat();

Continue reading...
 
Status
Not open for further replies.
Back
Top