All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
PoiSearchOptions.h
1 #pragma once
2 
3 #include <string>
4 #include "LatLongAltitude.h"
5 
6 
7 namespace Eegeo
8 {
9  namespace PoiSearch
10  {
12  {
13  std::string query;
14  Space::LatLong center;
15 
16  bool useRadius;
17  double radius;
18 
19  bool useNumber;
20  int number;
21 
22  bool useMinScore;
23  double minScore;
24 
25  bool useIndoorId;
26  std::string indoorId;
27 
28  bool useFloorNumber;
29  int floorNumber;
30 
31  bool useFloorDropoff;
32  int floorDropoff;
33  };
34 
36  {
37  std::string query;
38  Space::LatLong center;
39 
40  bool useRadius;
41  double radius;
42 
43  bool useNumber;
44  int number;
45  };
46 
48  {
49  std::string query;
50  Space::LatLong center;
51 
52  bool useNumber;
53  int number;
54  };
55  }
56 }