Multipoint shape files are not drawn at all in MapWinGIS (at least in branch 4.8.8). The reason for this is a missing conditional in `ShapefileDrawing.cpp` in line 589:
``` C++
// ------------------------------------------------
// perform drawing
// ------------------------------------------------
if ( _shptype == SHP_POINT )
{
DrawPointCategory(options, indices, drawSelection);
}
```
should be changed to:
``` C++
// ------------------------------------------------
// perform drawing
// ------------------------------------------------
if ( _shptype == SHP_POINT || _shptype == SHP_MULTIPOINT )
{
DrawPointCategory(options, indices, drawSelection);
}
```
Comments: ** Comment from web user: fjkaiser **
``` C++
// ------------------------------------------------
// perform drawing
// ------------------------------------------------
if ( _shptype == SHP_POINT )
{
DrawPointCategory(options, indices, drawSelection);
}
```
should be changed to:
``` C++
// ------------------------------------------------
// perform drawing
// ------------------------------------------------
if ( _shptype == SHP_POINT || _shptype == SHP_MULTIPOINT )
{
DrawPointCategory(options, indices, drawSelection);
}
```
Comments: ** Comment from web user: fjkaiser **
Please note that the code above does not draw the correct point. Instead it is using the lower left corner of the extent of the multi-point record to draw a single point.
Fixing MapWinGIS to draw all points from such a multi point set seems to be far more difficult.
Please ignore the suggested code modification.