|
@@ -35,13 +35,13 @@ public:
|
35
|
35
|
|
36
|
36
|
/// \fn drawLine(const GISPOI &city01, const GISPOI &city02)
|
37
|
37
|
/// \~English
|
38
|
|
- /// \brief adds a line from city01 to city02
|
|
38
|
+ /// \brief adds a line from poi01 to poi02
|
39
|
39
|
/// \~Spanish
|
40
|
40
|
/// \brief añade una linea entre los centroides de city01 a city02
|
41
|
41
|
///
|
42
|
|
- void drawLine(const GISPOI &city01, const GISPOI &city02) {
|
|
42
|
+ void drawLine(const GISPOI &poi01, const GISPOI &poi02) {
|
43
|
43
|
this->cityLines.push_back(
|
44
|
|
- QPair<const GISPOI *, const GISPOI *> (&city01, &city02));
|
|
44
|
+ QPair<const GISPOI *, const GISPOI *> (&poi01, &poi02));
|
45
|
45
|
}
|
46
|
46
|
|
47
|
47
|
/// \fn ~Map)()
|