文件名称:point-on-line:测试点是在直线上还是LineString上
文件大小:3KB
文件格式:ZIP
更新时间:2024-05-19 00:06:57
JavaScript
在线点 测试点是在直线上还是LineString上。 安装 通过npm安装: npm install point-on-line 用法 var pointOnLine = require ( "point-on-line" ) ; pointOnLine ( [ [ 0 , 0 ] , [ 1 , 1 ] ] , [ 0.5 , 0.5 ] ) ; // true pointOnLine ( [ [ 0 , 0 ] , [ 1 , 4 ] , [ 6 , 3 ] ] , [ 9 , 3 ] ) ; // false pointOnLine ( "sharks" , "pizza" ) ; // Error pointOnLine(线,点) 如果point在line任何线段(包括端点)上,则返回true 。 否则返回false 。 line必须是以下之一: x / y(或lng /
【文件预览】:
point-on-line-master
----.gitignore(526B)
----README.md(1KB)
----package.json(576B)
----index.js(2KB)
----test.js(2KB)