Google Maps/Satellite gurus? $50 inside for help.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Nom_is
    Confirmed User
    • Jan 2006
    • 197

    #1

    Google Maps/Satellite gurus? $50 inside for help.

    Hey guys,

    Can anybody guide me through having Google Maps with the satellite imagery setup on my site?

    Here are a couple of examples of people running the google maps API with satellite data:

    http://www.mapmsg.com/
    http://www.wikimapia.org/

    $50 to the person who can help me out, ICQ in sig.
    ICQ# 314-721-978
  • BucksMania
    Confirmed User
    • Oct 2005
    • 3758

    #2
    bump for you

    Comment

    • Nom_is
      Confirmed User
      • Jan 2006
      • 197

      #3
      Originally posted by BucksMania
      bump for you
      Thanks for the bump!
      ICQ# 314-721-978

      Comment

      • Nom_is
        Confirmed User
        • Jan 2006
        • 197

        #4
        ... bump ...
        ICQ# 314-721-978

        Comment

        • ztik
          Confirmed User
          • Aug 2001
          • 5196

          #5
          I'll set it up for $300
          .

          Comment

          • Martin3
            Confirmed User
            • Oct 2005
            • 1529

            #6
            http://www.google.com/apis/maps/
            264-543-302

            Comment

            • ztik
              Confirmed User
              • Aug 2001
              • 5196

              #7
              actualy here im lazy

              acdefg is your Key

              Code:
              <!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>Google Maps JavaScript API Example</title>    <script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=abcdefg"            type="text/javascript"></script>    <script type="text/javascript">    //<![CDATA[    function load() {      if (GBrowserIsCompatible()) {        var map = new GMap2(document.getElementById("map"));        map.setCenter(new GLatLng(37.4419, -122.1419), 13);      }    }    //]]>    </script>  </head>  <body onload="load()" onunload="GUnload()">    <div id="map" style="width: 500px; height: 300px"></div>  </body></html>
              .

              Comment

              • Nom_is
                Confirmed User
                • Jan 2006
                • 197

                #8
                Ok, I figured it out. Just incase anybody looking for the answer stumbles across this thread:

                In order to use the google satellite maps you have to set the map type using javascript. SetMapType is a javascript method of the GMap2 class.

                Here is the code:

                map.setMapType(G_SATELLITE_MAP);

                Make sure you put it after the setCenter method otherwise it will not work.
                ICQ# 314-721-978

                Comment

                Working...