index.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <link href="base.css" type="text/css" rel="stylesheet"/>
  5. <title>Proj4js Test Page</title>
  6. <script src="../lib/proj4js-combined.js"></script>
  7. <script src="../lib/defs/EPSG42304.js"></script>
  8. <script src="../lib/util/MGRS.js"></script>
  9. <script src="testdata.js"></script>
  10. <script src="runtests.js"></script>
  11. </head>
  12. <body onload="runTests()">
  13. <div id="header">
  14. <h1>Proj4js test page</h1>
  15. </div>
  16. <div id="navbar">
  17. <a href="http://trac.osgeo.org/proj4js">Proj4js Wiki/Trac</a> |
  18. <a href="http://wiki.osgeo.org/wiki/MetaCRS">OSGeo MetaCRS</a> |
  19. <a href="http://spatialreference.org/">spatialreference.org</a> |
  20. <a href="http://communitymapbuilder.org/">MapBuilder</a> |
  21. <a href="http://openlayers.org/">OpenLayers</a> |
  22. </div>
  23. <h2>Core tests</h2>
  24. <table id="testResult" border="1">
  25. <tr>
  26. <th>projection</th>
  27. <th>class</th>
  28. <th colspan="3">forward (m)</th>
  29. <th colspan="3">inverse (dd)</th>
  30. </tr>
  31. </table>
  32. <h2>Utility tests</h2>
  33. <script type="text/javascript" src="mgrs.js"></script>
  34. </body>
  35. </html>