| | |
| | | console.log(rs); |
| | | }); |
| | | } |
| | | |
| | | // 读取Las坐标系 |
| | | function ReadLasCs() { |
| | | var data = { token: token, ids: [10285, 10481, 10456, 10483], dircode: "00" }; |
| | | ajax("Convert/ReadLasCs", "POST", JSON.stringify(data), null, null, function (rs) { |
| | | alert("code = " + rs.code + ", msg = " + rs.msg + ", result = " + rs.result); |
| | | console.log(rs); |
| | | }); |
| | | } |
| | | </script> |
| | | </head> |
| | | <body> |
| | |
| | | <input type="button" value="测试Las" onclick="toLas();" /> |
| | | <input type="button" value="测试Laz" onclick="toLaz();" /> |
| | | <input type="button" value="生成Mpt" onclick="createMpt();" /> |
| | | <br /><br /> |
| | | |
| | | <input type="button" value="读取Las坐标系" onclick="ReadLasCs();" /> |
| | | </body> |
| | | </html> |