123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html>
- <head>
- <link rel="stylesheet" href="css/whereami.css">
- <script src="http://api.maps.ovi.com/jsl.js" type="text/javascript" charset="utf-8" />
- <script src="js/staticmap.js" type="text/javascript"></script>
- <script src="js/geolocation.js" type="text/javascript"></script>
- <meta charset="utf-8">
- </head>
- <center>
- <body onload="init()">
- <div id="mapContainer" class="mapContainer"></div>
- <div id="informationNote" class="informationNote">
- <p id="informationText" class="informationText">Loading...</p>
- </div>
- <!-- Uncomment the following block to enable the accuracy
- controls. -->
- <!--
- <div id="controls">
- <b>Accuracy</b><br />
- <form>
- <input type="radio" class="radioButton" name="accuracy"
- value="High"
- onclick="setAccuracy('high')" />High<br />
- <input type="radio" class="radioButton" name="accuracy"
- value="Low" checked="true"
- onclick="setAccuracy('low')" />Low
- </form>
- </div>
- -->
- <div id="buttons">
- <button id="centerButton" onclick="centerMap()"
- class="standardButton">Center</button>
- <button onclick="update()" class="standardButton">Update</button>
- </div>
- </body>
- </center>
- </html>
|