/**
  * Gets image from cache
  *
  * @param bbox
  */
 protected BufferedImage getImageCache(Double[] bbox) {
   return WFSImage.getCache(
       this.layerId,
       this.session.getLayers().get(this.layerId).getStyleName(),
       this.session.getLocation().getSrs(),
       bbox,
       this.session.getLocation().getZoom());
 }