Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
platform
PoiSearch
PoiSearchResult.h
1
#pragma once
2
3
#include "LatLongAltitude.h"
4
#include <string>
5
6
7
namespace
Eegeo
8
{
9
namespace
PoiSearch
10
{
11
struct
PoiSearchResult
12
{
13
int
Id;
14
std::string Title;
15
std::string Subtitle;
16
std::string Tags;
17
Space::LatLong
LatLong
;
18
double
HeightOffset;
19
bool
Indoor;
20
std::string IndoorId;
21
int
FloorId;
22
std::string UserData;
23
24
PoiSearchResult
(
25
int
id
,
26
const
std::string& title,
27
const
std::string& subtitle,
28
const
std::string& tags,
29
const
Space::LatLong
& latLong,
30
double
heightOffset,
31
bool
indoor,
32
const
std::string& indoorId,
33
int
floorId,
34
const
std::string& userData)
35
: Id(
id
)
36
, Title(title)
37
, Subtitle(subtitle)
38
, Tags(tags)
39
,
LatLong
(latLong)
40
, HeightOffset(heightOffset)
41
, Indoor(indoor)
42
, IndoorId(indoorId)
43
, FloorId(floorId)
44
, UserData(userData)
45
{
46
47
}
48
};
49
}
50
}
Generated on Sat Jun 10 2023 02:00:31 for eeGeo Platform SDK by
1.8.3.1