Geocoding With Google Maps

From Fishcakes Wiki

Jump to: navigation, search
Edit Menu

Image:Icon_Google_Maps_40px.png Geocoding with Google Maps


A guide to Google Maps Geocoding.

Contents

Geocoding Tutorial Notes

Notes from Tutorial

Here is an example web page to get you started:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <title>My Google AJAX Search API Application</title>
    <link href="http://www.google.com/uds/css/gsearch.css" type="text/css" rel="stylesheet"/>
    <script src="http://www.google.com/uds/api?file=uds.js&amp;v=1.0&amp;key=ABQIAAAAYBB_NyS1YelEH_91Z4JRxRRC3hDrkNx8wrzil_PArfl5N6KsMxRI90MqNp6JpSAIwTvuCeOZVQmebQ" type="text/javascript"></script>
    <script language="Javascript" type="text/javascript">
    //<![CDATA[
 
    function OnLoad() {
      // Create a search control
      var searchControl = new GSearchControl();
 
      // Add in a full set of searchers
      var localSearch = new GlocalSearch();
      searchControl.addSearcher(localSearch);
      searchControl.addSearcher(new GwebSearch());
      searchControl.addSearcher(new GvideoSearch());
      searchControl.addSearcher(new GblogSearch());
 
      // 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("Google");
    }
    GSearch.setOnLoadCallback(OnLoad);
 
    //]]>
    </script>
  </head>
  <body>
    <div id="searchcontrol">Loading...</div>
  </body>
</html>

Google Maps Geocoding Resources

Image:Icon Resources 20px.png Google Maps Links

Official Google Maps Links

Unofficial Google Maps Links

Great Google Maps Sites

Other Google Applications

  • Google Trends — compare the world's interest in your favourite topics.


Personal tools