Quantcast
Channel: MapWinGIS ActiveX Map and GIS Component
Viewing all articles
Browse latest Browse all 2341

Commented Unassigned: SHP_MULTIPOINT shape files are not drawn [24902]

$
0
0
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 **

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.


Viewing all articles
Browse latest Browse all 2341

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>