| 369 | /************************************************************************/ |
| 370 | |
| 371 | int msMapSetSize( mapObj *map, int width, int height ) |
| 372 | |
| 373 | { |
| 374 | map->width = width; |
| 375 | map->height = height; |
| 376 | |
| 377 | return msMapComputeGeotransform( map ); /* like SetRotation -- sean */ |
| 378 | } |
| 379 | |
| 380 | /************************************************************************/ |
| 381 | /* msMapComputeGeotransform() */ |
no test coverage detected