Skip to content

Commit

Permalink
make stroke thinner
Browse files Browse the repository at this point in the history
  • Loading branch information
djh1997 authored Jun 13, 2024
1 parent ac6e152 commit 8f802da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/25cw/map.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}

function showPosition(position) {
x.innerHTML = '<?xml version="1.0" encoding="utf-8"?> <svg viewBox="-16 505 10 5" width="800" height="800" xmlns="http://www.w3.org/2000/svg"><path style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0);" d="M -12.943 507.66 L -10.7 506.856 L -12.959 505.744 L -15.703 506.694 Z"/><ellipse style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0);" cx="'
x.innerHTML = '<?xml version="1.0" encoding="utf-8"?> <svg viewBox="-16 505 10 5" width="800" height="800" xmlns="http://www.w3.org/2000/svg"><path style="stroke-width: 0.1px; fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0);" d="M -12.943 507.66 L -10.7 506.856 L -12.959 505.744 L -15.703 506.694 Z"/><ellipse style="stroke-width: 0.1px; fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0);" cx="'
+ position.coords.longitude*10 + '" cy="' + position.coords.latitude*10 +
'" rx=".5" ry=".5"/></svg>';
}
Expand Down

0 comments on commit 8f802da

Please sign in to comment.