相關介紹,Live Search地圖,公交換乘查詢功能強大,Live Search換乘路線圖示很明顯,Google地圖的缺陷,Google地圖換乘點圖示不是很明顯,Google地圖沒有提供公交路線換乘查詢功能,AJAX Live Search,作用,AJAX Live Search,例子,例子解釋,例子解釋,
相關介紹
Live Search 包含多個選項卡,每個選項卡都提供了豐富的資源。請選擇相應類別獲取您需要的內容,類別包括新聞、內容訂閱源、圖片、視頻、購物、學術論文等。
除此之外,微軟Live Search地圖搜尋還提供了強大的地圖示志功能,用戶可以標註不同位置之間的路線圖,系統會自動計算距離。有趣的是,Live Search地圖搜尋還提供不規則多邊形的標註,用戶可以自行計算某一區域的面積,功能非常強大。並且用戶使用Windows Live ID登錄後,就可以永久的保留自己所做的標註
"livesearch.php" 中的代碼檢查那個 XML 文檔 "links.xml"。該文檔上的一些頁面的標題和 URL。
這些代碼會搜尋 XML 檔案中匹配搜尋字元串的標題,並以 HTML 返回結果:
<?php$xmlDoc = new DOMDocument();$xmlDoc->load("links.xml");$x=$xmlDoc->getElementsByTagName('link');//get the q parameter from URL$q=$_GET["q"];//lookup all links from the xml file if length of q>0if (strlen($q) > 0){$hint="";for($i=0; $i<($x->length); $i++) { $y=$x->item($i)->getElementsByTagName('title'); $z=$x->item($i)->getElementsByTagName('url'); if ($y->item(0)->nodeType==1) { //find a link matching the search text if (stristr($y->item(0)->childNodes->item(0)->nodeValue,$q)) { if ($hint=="") { $hint="<a href='" . $z->item(0)->childNodes->item(0)->nodeValue . "' target='_blank'>" . $y->item(0)->childNodes->item(0)->nodeValue . "</a>"; } else { $hint=$hint . "<br /><a href='" . $z->item(0)->childNodes->item(0)->nodeValue . "' target='_blank'>" . $y->item(0)->childNodes->item(0)->nodeValue . "</a>"; } } } }}// Set output to "no suggestion" if no hint were found// or to the correct valuesif ($hint == "") { $response="no suggestion"; }else { $response=$hint; } //output the responseecho $response;?>
例子解釋
如果從 JavaScript 送來了任何文本 (strlen($q) > 0),會發生:
PHP 創建 "links.xml" 檔案的一個 XML DOM 對象
遍歷所有 "title" 元素 (nodetypes = 1),以便找到匹配 JavaScript 所傳數據的 name
找到包含正確 title 的 link,並設定為 "$response" 變數。如果找到多於一個匹配,所有的匹配都會添加到變數