I have a Polyline that is drawn from point A to point B, I'm trying to figure out how to draw two lines of a constant width that appear something like this image.

enter image description here

I only have two points, rather than four, I thought maybe there was a way to create four points, based on the two and then draw the corresponding lines, but I cant seem to get my head around it.

Any suggestions

link|improve this question

73% accept rate
I'm working on some code that will split two points into 4 (place two points perpendicular to the original a given distance apart). From there it should be easy to make two lines of different colors. – user379468 Feb 24 at 17:02
feedback

2 Answers

up vote 0 down vote accepted

I am currently trying to achieve the same thing, have two parallel polylines, but with different colors.

Have you seen this:

http://wtp2.appspot.com/ParallelLines.htm

It uses Google Maps v2 API, but it seems quite simple to convert it to API v3.

link|improve this answer
this is cool, do you have any idea how he is doing it? – user379468 Mar 12 at 0:10
sorry spoke to soon, I see the link to the code. did you have any luck converting this to v3? – user379468 Mar 12 at 0:23
feedback

That's really complicated I think, because you have to re-calculate the route of the lines on every zoom-change.

When you don't need 2 different colors you could easy accomplish a similar effect by using the same route for two lines:

http://jsfiddle.net/doktormolle/KFsDB/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.