I'm attempting to stroke a svg path on a particular location of a canvas, but I'm not sure how I can indicate the coordinates of where to stroke the path. How can I do that? I have the following code so far.
var path = new Path2D(//path string here);
ctx.fillStyle = '#000';
ctx.strokeStyle = '#000';
ctx.stroke(path);
ctx.fill(path);