Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Apr 23, 2012 02:36 PM by Rion Williams
0 Points
2 Posts
Apr 11, 2012 01:33 PM|LINK
Hello friends,
I'm making an ASP.NET application where I want to draw a line between 2 locations on google maps. How can I do so ?
All-Star
32002 Points
5196 Posts
Apr 11, 2012 03:32 PM|LINK
Hi Ruchir6,
I am unsure if this will help you out - but you might want to look into the following StackOverflow question:
Drawing a Polyline in Google Maps using C#
Syntax-wise Example:
//Define Points var points = new List<GLatLng> { new GLatLng(x,y),new GLatLng(x,y) }; //Create Line var polyline = new GPolyline(points,"[Color]",1);
Apr 23, 2012 02:24 PM|LINK
Thanks for the reply Sir.
Apr 23, 2012 02:36 PM|LINK
Hope it helps Ruchir. :)
Ruchir6
0 Points
2 Posts
Polyline encoding in Google Maps
Apr 11, 2012 01:33 PM|LINK
Hello friends,
I'm making an ASP.NET application where I want to draw a line between 2 locations on google maps. How can I do so ?
Rion William...
All-Star
32002 Points
5196 Posts
Re: Polyline encoding in Google Maps
Apr 11, 2012 03:32 PM|LINK
Hi Ruchir6,
I am unsure if this will help you out - but you might want to look into the following StackOverflow question:
Drawing a Polyline in Google Maps using C#
Syntax-wise Example:
//Define Points var points = new List<GLatLng> { new GLatLng(x,y),new GLatLng(x,y) }; //Create Line var polyline = new GPolyline(points,"[Color]",1);Ruchir6
0 Points
2 Posts
Re: Polyline encoding in Google Maps
Apr 23, 2012 02:24 PM|LINK
Thanks for the reply Sir.
Rion William...
All-Star
32002 Points
5196 Posts
Re: Polyline encoding in Google Maps
Apr 23, 2012 02:36 PM|LINK
Hope it helps Ruchir. :)