0

私は現在、ユーザーが場所を入力すると緯度と経度を取得するコードに取り組んでいますが、データベースに緯度と経度の両方を追加する必要があります。クライアント側のコードは動作しており、html ファイルは以下のとおりです。

これらの値をサーバー側に php で転送してデータベースに追加するにはどうすればよいですか。

    <!DOCTYPE html>
    <html>
    <head>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
    <meta charset="UTF-8">
    <title>maps</title>
     <style>
     #map_canvas { width:400px; height:450px; }
      </style>
     <script type="text/javascript" src="http://maps.google.com/maps/api/js?                   sensor=false">
     </script>
     <script type="text/javascript">

      var geocoder;
      var map;
      var lat;
      var lng;

       function initialize() {
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(-30.070, -51.190);
var myOptions = {
    zoom: 9,
    center: latlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
}

    function codeAddress() {
var address = document.getElementById("address").value;
geocoder.geocode( { 'address': address}, function(results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
        map.setCenter(results[0].geometry.location);
        var marker = new google.maps.Marker;
        document.getElementById('lat').value = results[0].geometry.location.lat();
        document.getElementById('lng').value = results[0].geometry.location.lng();


    } else {
        alert("Geocode was not successful for the following reason: " + status);
    }
});
  }



   </script>
    </head>

    <body onload="initialize()">
    <form action="map2.php" method="get">

 <div id="map_canvas"></div>
 <div>
    <input id="address" type="textbox" value="">
    <input type="button" value="Localizar!" onclick="codeAddress()"><br>
    Latitude: <input type="text" id="lat"><br>
    Longitude: <input type="text" id="lng"><br>
 </div>

4

1 に答える 1

5

jqueryを使用してこれを簡単に行うことができます(ページの読み込みやフォームの送信は不要です)-

if (status == google.maps.GeocoderStatus.OK) {
    map.setCenter(results[0].geometry.location);
    var marker = new google.maps.Marker;
    document.getElementById('lat').value = results[0].geometry.location.lat();
    document.getElementById('lng').value = results[0].geometry.location.lng();


   // add this
    var latt=results[0].geometry.location.lat();
    var lngg=results[0].geometry.location.lng();
    $.ajax({
        url: "your-php-code-url-to-save-in-database",
        dataType: 'json',
        type: 'POST',
        data:{ lat: lat, lng: lngg }
        success: function(data)
        {                
           //check here whether inserted or not 
        }
   });


 }

そしてphpファイルで:

  <?php
    // file name: your-php-code-url-to-save-in-database.php
   $lat=$_POST['lat'];
   $lng=$_POST['lng'];

   // write your insert query here to save $lat and $lng 


  ?>

詳細を知り、Jquery をダウンロードするには、http://jquery.com/download/ にアクセスしてください

もう 1 つの方法は、Jquery を使用しないことです (ページは map2.php にリダイレクトされます)。

<div id="map_canvas"></div>
<form action="map2.php" method="get">
   <div>
    <input id="address" type="textbox" value="">
    <input type="button" value="Localizar!" onclick="codeAddress()"><br>
    Latitude: <input name="lat" type="text" id="lat"><br>
    Longitude: <input name="lng" type="text" id="lng"><br>
   </div>
</form>

そしてあなたのmap2.php書き込みで-

 <?php

     // file name: map2.php

   $lat=$_GET['lat'];
   $lng=$_GET['lng'];

   // write your insert query here to save $lat and $lng 
   //get your mysql db connection ready

    $sql="insert into table_name (latitude, longitude) values('".$lat."','".$lng.")";
    $command=mysql_query($sql);

    // close databse connection  and everythig is done then redict to any page.
    //check your database table to see the inserted value

  ?>

フォーム メソッドでは、GET の代わりに POST を使用することをお勧めしますこの変更を行った場合は、map2.php でGETPOSTのみに変更します。POST を使用する理由については、リンク 1リンク 2を参照してください。

于 2013-09-16T07:23:16.230 に答える