topical media & game development

talk show tell print

mobile-game-ch23-static-map.htm / htm



  <!DOCTYPE HTML>
  <html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Grabbing the position</title>
    <script src='mobile-game-ch23-js-jquery.min.js'></script>
  </head>
  <body>
    <script>
      function logPosition(position) {
        var url = "http://maps.googleapis.com/maps/api/staticmap?" +
                  "zoom=13&size=320x420&" +
                  "markers=color:blue%7Clabel:S%7C" +
                  position.coords.latitude + "," +
                  position.coords.longitude + "&sensor=true";
  
        $("<img>").attr("src",url)
                  .appendTo("body");
      }
  
      navigator.geolocation.getCurrentPosition(logPosition,positionError,{
        enableHighAccuracy: true
      });
    </script>
  </body>
  </html>
  


(C) Æliens 04/09/2009

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.