使用 PHP/MySQL 在google map中解析地址為經緯度

來源:互聯網
上載者:User

為了儲存與地址相關聯的位址解析資訊,我們需要設計合適的資料架構。在本文的樣本中,我們希望在地圖混搭程式上顯示餐館或酒吧。對於這類場所,典型的資料庫表中應包含以下必要欄位:

  • 地址的唯一 id
  • 文本字串形式的場所地址
  • 經過位址解析的位置的 lat 值和 lng 值

另外,我們希望所提供的地址資料庫可以被實際使用者使用,因此,需要為場所添加人類可讀的名稱以進行唯一標識,並添加 type 屬性以區分餐館和酒吧(僅出於增添樂趣的目的)。

  • 文本字串形式的場所名稱
  • 場所的 type(本樣本中為酒吧或者餐館)

在建立地址表時,請注意,Google Maps API 中的 lat 值和 lng 值只需精確到 6 位元即可唯一標識某個場所。為了少佔用儲存空間,我們將 lat 欄位和 lng 欄位指定為 FLOAT(10,6) 大小的數字。這種大小的浮點數的儲存精確度為小數點後 6 位元以及小數點前最多 4 位元,例如 -123.456789 度。

可以使用下面顯示的 SQL 陳述式建立地址表:

CREATE TABLE `markers` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`name` VARCHAR( 60 ) NOT NULL ,
`address` VARCHAR( 80 ) NOT NULL ,
`lat` FLOAT( 10, 6 ) NOT NULL ,
`lng` FLOAT( 10, 6 ) NOT NULL ,
`type` VARCHAR( 30 ) NOT NULL
) ENGINE = MYISAM ;
請注意,以下範例程式碼中使用了一個虛擬 KEY 常數,您需要將該鍵替換為自己的鍵,否則您的所有請求都會返回一個610狀態碼。

使用 PHP 5 和 XML 輸出進行位址解析的範例程式碼如下所示 :

<?php
require("phpsqlgeocode_dbinfo.php");
define("MAPS_HOST", "maps.google.com");
define("KEY", "abcdefg");
// Opens a connection to a MySQL server
$connection = mysql_connect("localhost", $username, $password);
if (!$connection) {
  die("Not connected : " . mysql_error());
}
// Set the active MySQL database
$db_selected = mysql_select_db($database, $connection);
if (!$db_selected) {
  die("Can\'t use db : " . mysql_error());
}

// Select all the rows in the markers table
$query = "SELECT * FROM markers WHERE 1";
$result = mysql_query($query);
if (!$result) {
  die("Invalid query: " . mysql_error());
}

// Initialize delay in geocode speed
$delay = 0;
$base_url = "http://" . MAPS_HOST . "/maps/geo?output=xml" . "&key=" . KEY;

// Iterate through the rows, geocoding each address
while ($row = @mysql_fetch_assoc($result)) {
    $geocode_pending = true;

    while ($geocode_pending) {
      $address = $row["address"];
      $id = $row["id"];
      $request_url = $base_url . "&q=" . urlencode($address);
      $xml = simplexml_load_file($request_url) or die("url not loading");

      $status = $xml->Response->Status->code;
      if (strcmp($status, "200") == 0) {
        // Successful geocode
        $geocode_pending = false;
        $coordinates = $xml->Response->Placemark->Point->coordinates;
        $coordinatesSplit = split(",", $coordinates);
        // Format: Longitude, Latitude, Altitude
        $lat = $coordinatesSplit[1];
       $lng = $coordinatesSplit[0];
       $query = sprintf("UPDATE markers " .
              " SET lat = '%s', lng = '%s' " .
              " WHERE id = '%s' LIMIT 1;",
              mysql_real_escape_string($lat),
              mysql_real_escape_string($lng),
              mysql_real_escape_string($id));
       $update_result = mysql_query($query);
       if (!$update_result) {
         die("Invalid query: " . mysql_error());
       }
     } else if (strcmp($status, "620") == 0) {
       // sent geocodes too fast
       $delay += 100000;
     } else {
       // failure to geocode
       $geocode_pending = false;
       echo "Address " . $address . " failed to geocoded. ";
       echo "Received status " . $status . "\n";
     }
     usleep($delay);
   }
 }
 ?>


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.