index.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html>
  3. <head>
  4. <link rel="stylesheet" href="css/whereami.css">
  5. <script src="http://api.maps.ovi.com/jsl.js" type="text/javascript" charset="utf-8" />
  6. <script src="js/staticmap.js" type="text/javascript"></script>
  7. <script src="js/geolocation.js" type="text/javascript"></script>
  8. <meta charset="utf-8">
  9. </head>
  10. <center>
  11. <body onload="init()">
  12. <div id="mapContainer" class="mapContainer"></div>
  13. <div id="informationNote" class="informationNote">
  14. <p id="informationText" class="informationText">Loading...</p>
  15. </div>
  16. <!-- Uncomment the following block to enable the accuracy
  17. controls. -->
  18. <!--
  19. <div id="controls">
  20. <b>Accuracy</b><br />
  21. <form>
  22. <input type="radio" class="radioButton" name="accuracy"
  23. value="High"
  24. onclick="setAccuracy('high')" />High<br />
  25. <input type="radio" class="radioButton" name="accuracy"
  26. value="Low" checked="true"
  27. onclick="setAccuracy('low')" />Low
  28. </form>
  29. </div>
  30. -->
  31. <div id="buttons">
  32. <button id="centerButton" onclick="centerMap()"
  33. class="standardButton">Center</button>
  34. <button onclick="update()" class="standardButton">Update</button>
  35. </div>
  36. </body>
  37. </center>
  38. </html>