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...
Continue reading...