RenderinstructionArea constructor
RenderinstructionArea(
- int level
Creates a new area rendering instruction for the specified drawing level.
level The drawing level (layer) for this area instruction
Implementation
RenderinstructionArea(int level) : super() {
this.level = level;
// Disable bitmap scaling for areas to maintain visual quality
setBitmapMinZoomLevel(65535);
setBitmapPercent(100);
}