Eclipse SUMO - Simulation of Urban MObility
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
PointOfInterest.h
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2005-2025 German Aerospace Center (DLR) and others.
4// This program and the accompanying materials are made available under the
5// terms of the Eclipse Public License 2.0 which is available at
6// https://www.eclipse.org/legal/epl-2.0/
7// This Source Code may also be made available under the following Secondary
8// Licenses when the conditions for such availability set forth in the Eclipse
9// Public License 2.0 are satisfied: GNU General Public License, version 2
10// or later which is available at
11// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13/****************************************************************************/
21// A point-of-interest (2D)
22/****************************************************************************/
23#pragma once
24#include <config.h>
25
31#include <utils/geom/Position.h>
33
34#include "Shape.h"
35
36// ===========================================================================
37// class definitions
38// ===========================================================================
43class PointOfInterest : public Shape, public Position, public Parameterised {
44
45public:
65 PointOfInterest(const std::string& id, const std::string& type,
66 const RGBColor& color, const Position& pos, bool geo,
67 const std::string& lane, double posOverLane,
68 bool friendlyPos, double posLat,
69 const std::string& icon,
70 double layer = DEFAULT_LAYER,
71 double angle = DEFAULT_ANGLE,
72 const std::string& imgFile = DEFAULT_IMG_FILE,
73 double width = DEFAULT_IMG_WIDTH,
74 double height = DEFAULT_IMG_HEIGHT,
75 const std::string& name = DEFAULT_NAME,
76 const Parameterised::Map& parameters = DEFAULT_PARAMETERS);
77
80
83
85 POIIcon getIcon() const;
86
88 const std::string& getIconStr() const;
89
91 double getWidth() const;
92
94 double getHeight() const;
95
97 Position getCenter() const;
98
100 bool getFriendlyPos() const;
101
103
104
107
109 void setIcon(const std::string& icon);
110
112 void setWidth(double width);
113
115 void setHeight(double height);
116
118 void setFriendlyPos(const bool friendlyPos);
119
121
122 /* @brief POI definition to the given device
123 * @param[in] geo Whether to write the output in geo-coordinates
124 */
125 void writeXML(OutputDevice& out, const bool geo = false, const double zOffset = 0., const std::string laneID = "", const double pos = 0., const bool friendlyPos = false, const double posLat = 0.) const;
126
127protected:
129 bool myGeo;
130
132 std::string myLane;
133
136
139
141 double myPosLat;
142
145
148
151};
POIIcon
POI icons.
Static storage of an output device and its base (abstract) implementation.
An upper class for objects with additional parameters.
std::map< std::string, std::string > Map
parameters map
A point-of-interest.
bool myGeo
flag to check if POI was loaded as GEO Position (main used by netedit)
POIIcon myIcon
POI icon.
POIIcon getIcon() const
get icon
~PointOfInterest()
Destructor.
bool getFriendlyPos() const
returns friendly position
void setHeight(double height)
set the image height of the POI
double myHalfImgHeight
The half height of the image when rendering this POI.
void setFriendlyPos(const bool friendlyPos)
set friendly position
double myPosLat
lateral position over lane in which this POI is placed (main used by netedit)
Position getCenter() const
Returns the image center of the POI.
void setWidth(double width)
set the image width of the POI
double getHeight() const
Returns the image height of the POI.
bool myFriendlyPos
friendlyPos enable or disable friendly position for position over lane
std::string myLane
ID of lane in which this POI is placed (main used by netedit)
void setIcon(const std::string &icon)
set icon
double myPosOverLane
position over lane in which this POI is placed (main used by netedit)
double getWidth() const
Returns the image width of the POI.
const std::string & getIconStr() const
get icon(in string format)
void writeXML(OutputDevice &out, const bool geo=false, const double zOffset=0., const std::string laneID="", const double pos=0., const bool friendlyPos=false, const double posLat=0.) const
double myHalfImgWidth
The half width of the image when rendering this POI.
A point in 2D or 3D with translation and scaling methods.
Definition Position.h:37
A 2D- or 3D-Shape.
Definition Shape.h:38
static const double DEFAULT_LAYER
Definition Shape.h:43
static const double DEFAULT_IMG_WIDTH
Definition Shape.h:48
static const std::string DEFAULT_IMG_FILE
Definition Shape.h:47
static const double DEFAULT_ANGLE
Definition Shape.h:46
static const std::string DEFAULT_NAME
Definition Shape.h:50
static const double DEFAULT_IMG_HEIGHT
Definition Shape.h:49
static const Parameterised::Map DEFAULT_PARAMETERS
Definition Shape.h:51