MediaWiki:GoogleAPI.js
From Metabolomics.JP
(Difference between revisions)
(New page: <script type="text/javascript"> //<![CDATA[ google.load('search', '1.0'); function OnLoad() { // Create a search control var searchControl = new google....) |
|||
| Line 1: | Line 1: | ||
| − | <script type="text/javascript"> | + | <script src="http://www.google.com/jsapi" |
| + | type="text/javascript"></script> | ||
| + | <script language="Javascript" type="text/javascript"> | ||
//<![CDATA[ | //<![CDATA[ | ||
| + | google.load('search', '1'); | ||
| − | |||
| − | |||
function OnLoad() { | function OnLoad() { | ||
// Create a search control | // Create a search control | ||
var searchControl = new google.search.SearchControl(); | var searchControl = new google.search.SearchControl(); | ||
| − | + | ||
// Add in a full set of searchers | // Add in a full set of searchers | ||
var localSearch = new google.search.LocalSearch(); | var localSearch = new google.search.LocalSearch(); | ||
| Line 18: | Line 19: | ||
searchControl.addSearcher(new google.search.BookSearch()); | searchControl.addSearcher(new google.search.BookSearch()); | ||
searchControl.addSearcher(new google.search.PatentSearch()); | searchControl.addSearcher(new google.search.PatentSearch()); | ||
| − | + | ||
// Set the Local Search center point | // Set the Local Search center point | ||
localSearch.setCenterPoint("New York, NY"); | localSearch.setCenterPoint("New York, NY"); | ||
| − | + | ||
// tell the searcher to draw itself and tell it where to attach | // tell the searcher to draw itself and tell it where to attach | ||
searchControl.draw(document.getElementById("searchcontrol")); | searchControl.draw(document.getElementById("searchcontrol")); | ||
| − | + | ||
// execute an inital search | // execute an inital search | ||
| + | searchControl.execute("VW GTI"); | ||
| + | } | ||
| + | google.setOnLoadCallback(OnLoad); | ||
| + | |||
| + | //]]> | ||
| + | </script> | ||
Revision as of 11:04, 6 September 2010
<script src="http://www.google.com/jsapi"
type="text/javascript"></script>
<script language="Javascript" type="text/javascript">
//<![CDATA[
google.load('search', '1');
function OnLoad() {
// Create a search control
var searchControl = new google.search.SearchControl();
// Add in a full set of searchers
var localSearch = new google.search.LocalSearch();
searchControl.addSearcher(localSearch);
searchControl.addSearcher(new google.search.WebSearch());
searchControl.addSearcher(new google.search.VideoSearch());
searchControl.addSearcher(new google.search.BlogSearch());
searchControl.addSearcher(new google.search.NewsSearch());
searchControl.addSearcher(new google.search.ImageSearch());
searchControl.addSearcher(new google.search.BookSearch());
searchControl.addSearcher(new google.search.PatentSearch());
// Set the Local Search center point
localSearch.setCenterPoint("New York, NY");
// tell the searcher to draw itself and tell it where to attach
searchControl.draw(document.getElementById("searchcontrol"));
// execute an inital search
searchControl.execute("VW GTI");
}
google.setOnLoadCallback(OnLoad);
//]]>
</script>