Get All Point In Line or Polygon

2 messages Options
Embed this post
Permalink
anhtin

Get All Point In Line or Polygon

Reply Threaded More More options
Print post
Permalink
Hi all
How could i get coordinate all point in LineObj ?
I use Mapserver 4.10 and asp.net.
Tamas Szekeres

Re: Get All Point In Line or Polygon

Reply Threaded More More options
Print post
Permalink
Hi,

for (int i = 0; i < line_obj.numpoints; i++)
{
pointObj point = line_obj.get(i);
Console.WriteLine("X=" + point.x + " Y=" + point.y );
}

Best regards,

Tamas



2008/1/18, Bui Anh Tin <[hidden email]>:
> Hi all
> How could i get coordinate all point in LineObj ?
> I use Mapserver 4.10 and asp.net.
>