ToolMap
Loading...
Searching...
No Matches
tmgisdatarasterweb.h
1/***************************************************************************
2 tmgisdatarasterweb
3 -------------------
4 copyright : (C) 2013 CREALP Lucien Schreiber
5 ***************************************************************************/
6
7/***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#ifndef _TM_GISDATARASTER_WEB_H_
17#define _TM_GISDATARASTER_WEB_H_
18
19#include <wx/wxprec.h>
20
21#ifndef WX_PRECOMP
22#include <wx/wx.h>
23#endif
24
25#include "tmgisdataraster.h"
26
28 private:
29 tmRealRect m_FilterCoordLocal;
30 tmRealRect m_FilterCoordWeb;
31
32 public:
34
36
37 virtual wxString GetDataSizeAsHtml(int iPrecision = 2);
38
39 virtual bool SetSpatialFilter(tmRealRect filter, int type);
40
41 virtual tmRealRect GetImageClipedCoordinates() {
42 return m_FilterCoordLocal;
43 }
44};
45
46#endif
Definition tmgisdatarasterweb.h:27
virtual bool SetSpatialFilter(tmRealRect filter, int type)
Define the area of interest.
Definition tmgisdatarasterweb.cpp:31
Definition tmgisdataraster.h:66
Class representing real rectangle.
Definition tmgisscale.h:44