[mapguide-trac] #1916: Map extent MaxX incorrectly written in RuntimeMapSerializeExtent

MapGuide Open Source trac_mapguide at osgeo.org
Mon Jan 16 07:27:51 EST 2012


#1916: Map extent MaxX incorrectly written in RuntimeMapSerializeExtent
------------------------+---------------------------------------------------
   Reporter:  hm        |       Owner:  jng                  
       Type:  defect    |      Status:  new                  
   Priority:  medium    |   Milestone:                       
  Component:  Maestro   |     Version:  2.2.0                
   Severity:  critical  |    Keywords:  Serialize Extent MaxX
External_id:            |  
------------------------+---------------------------------------------------
 The RuntimeMap SerializeExtent has a bug.

 The extents are written as this:
 s.Write(env.MinX);
 s.Write(env.MinY);
 s.Write(env.Max'''Y''');
 s.Write(env.MaxY);

 This should be:

 s.Write(env.MinX);
 s.Write(env.MinY);
 s.Write(env.Max'''X''');
 s.Write(env.MaxY);

-- 
Ticket URL: <http://trac.osgeo.org/mapguide/ticket/1916>
MapGuide Open Source <http://mapguide.osgeo.org/>
MapGuide Open Source Internals


More information about the mapguide-trac mailing list