Loading...
Searching...
No Matches
maptools.h
Go to the documentation of this file.
1/* Copyright (C) 2008 National Institute For Space Research (INPE) - Brazil.
2
3 This file is part of the TerraLib - a Framework for building GIS enabled applications.
4
5 TerraLib is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 TerraLib is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TerraLib. See COPYING. If not, write to
17 TerraLib Team at <terralib-team@terralib.org>.
18 */
19
20/*!
21 \file maptools.h
22
23 \brief This file contains include headers for the Map Tools module of TerraLib.
24*/
25
26#ifndef __TERRALIB_INTERNAL_MAPTOOLS_H
27#define __TERRALIB_INTERNAL_MAPTOOLS_H
28
29// TerraLib
34#include "maptools/Canvas.h"
35#include "maptools/Config.h"
38#include "maptools/MapDisplay.h"
41#include "maptools/QueryLayer.h"
44#include "maptools/Utils.h"
45
46/*!
47 \defgroup map Map Tools
48
49 \brief The map tools module provides some basic abstractions for handling spatial data in the form of a map.
50
51 The TerraLib Map Tools module provides a basic set of tools for dealing with maps. You can extend this basic framework
52 in order to have your own way of rendering and representing the concept of a map.
53
54 In this module you will find some useful concepts like:
55
56 <ul>
57 <li>Canvas: an abstraction of a drawing area;</li>
58 <li>Layer: a base class designed to support applications that handle information as layers.
59 A layer is just a reference to the data (not the data itself) and can be used to logically organize it.
60 The information about a layer can be stored in different medias (a XML file or a DBMS table) depending on the type of persistence choosed;</li>
61 <li>Renderer: a set of classes for rendering layers, geographical objects and other stuffs;</li>
62 <li>MapDisplay: a helper class to control the display of a set of layers;</li>
63 <li>etc.</li>
64 </ul>
65
66 The main classes/concepts in this module are listed here. The namespace associated to the Map Tools module is te::map.
67 To know more about it, see the te::map namespace documentation.
68*/
69
70namespace te
71{
72 /*!
73 \brief Namespace for the Map Tools module of TerraLib.
74 */
75 namespace map
76 {
77 } // end namespace map
78} // end namespace te
79
80#endif // __TERRALIB_INTERNAL_MAPTOOLS_H
81
This is the base class for Layers.
It defines the concept of a map display responsible for controlling how a set of layers are displayed...
An abstract class for conversion of Symbology Enconding Mark elements to an image pattern.
This is the base class for renderers.
A layer with reference to a dataset.
A layer that can be used as a container for other kind of layers.
This is a singleton for managing all mark renderers instances available in the system.
A visitor that converts a OGC Filter Expression to TerraLib Expression.
It renders the objects associated to a query layer.
A layer resulting from a query.
An abstract factory for layer renderers.
A canvas is an abstraction of a drawing area.
The map display controls how a set of layers are displayed.
TerraLib.
Configuration flags for the Map Rendering module of TerraLib.
Utility functions for MapTools module.