123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <link href="base.css" type="text/css" rel="stylesheet"/>
- <title>Proj4js Test Page</title>
- <script src="../lib/proj4js-combined.js"></script>
- <script src="../lib/defs/EPSG42304.js"></script>
- <script src="../lib/util/MGRS.js"></script>
- <script src="testdata.js"></script>
- <script src="runtests.js"></script>
- </head>
- <body onload="runTests()">
- <div id="header">
- <h1>Proj4js test page</h1>
- </div>
- <div id="navbar">
- <a href="http://trac.osgeo.org/proj4js">Proj4js Wiki/Trac</a> |
- <a href="http://wiki.osgeo.org/wiki/MetaCRS">OSGeo MetaCRS</a> |
- <a href="http://spatialreference.org/">spatialreference.org</a> |
- <a href="http://communitymapbuilder.org/">MapBuilder</a> |
- <a href="http://openlayers.org/">OpenLayers</a> |
- </div>
- <h2>Core tests</h2>
- <table id="testResult" border="1">
- <tr>
- <th>projection</th>
- <th>class</th>
- <th colspan="3">forward (m)</th>
- <th colspan="3">inverse (dd)</th>
- </tr>
- </table>
- <h2>Utility tests</h2>
- <script type="text/javascript" src="mgrs.js"></script>
- </body>
- </html>
|