0

我正在玩一些谷歌航点 https://developers.google.com/maps/documentation/javascript/examples/directions-waypoints

无法弄清楚如何将结果加载到数据库中。

我想查询这些。

4

1 回答 1

0
function calcRoute() {
  var start = document.getElementById('start').value;
  var end = document.getElementById('end').value;
  var waypts = [];
  var checkboxArray = document.getElementById('waypoints');

// These three variables are to be stored in DB, use Jquery GET/POST to a php and store it to a database
  }

在这里查看 POST

于 2013-05-20T04:07:34.097 回答