Skip to content

Commit

Permalink
chore: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
oterral committed May 10, 2024
1 parent b42e5e8 commit c207990
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/helper/getIntersectedLinesAndPoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ const getIntersectedLinesAndPoint = (coordinate, lines, map, snapTolerance) => {
parser.read(lineB.getGeometry()),
);
const coord = intersections?.getCoordinates()[0];
console.log(coord, lineA !== lineB, isSameLines(lineA, lineB, map));

if (coord && lineA !== lineB && !isSameLines(lineA, lineB, map)) {
intersections.getCoordinates().forEach(({ x, y }) => {
Expand Down

0 comments on commit c207990

Please sign in to comment.