Menu

#2 LineString 'coord's need to be seperated...

closed-fixed
boseefus
Bug (17)
5
2007-01-31
2007-01-28
No

When i tried to draw a path using linestring, ge changed the view to a non-visible area.
I checked the xml and found that the coordinates of linestring is not seperated by space.
Its same as fixed bug of geLinearRing.ToKML().

the lines from 62 to 65 on geLineString.cs should be:

foreach (geCoordinates coord in Coordinates)
{
kml.WriteString(coord.ToTuple() + " ");
}

which is now:
foreach (geCoordinates coord in Coordinates)
{
kml.WriteString(coord.ToTuple());
}

Discussion

  • boseefus

    boseefus - 2007-01-30
    • assigned_to: nobody --> boseefus00001
     
  • boseefus

    boseefus - 2007-01-31
    • status: open --> closed-fixed
     
  • boseefus

    boseefus - 2007-01-31

    Logged In: YES
    user_id=1516276
    Originator: NO

    Fixed!

     

Log in to post a comment.