Welcome to mirror list, hosted at ThFree Co, Russian Federation.

local_ads_supported_types.cpp « map - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94e40b3db34ff17c40550e35c87763d6eb2ad8b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#include "map/local_ads_manager.hpp"

#include <initializer_list>

void LocalAdsManager::FillSupportedTypes()
{
  m_supportedTypes.Append<std::initializer_list<std::initializer_list<char const *>>>(
      {{"amenity", "atm"},
       {"amenity", "bank"},
       {"amenity", "bar"},
       {"amenity", "bbq"},
       {"amenity", "bicycle_parking"},
       {"amenity", "bicycle_rental"},
       {"amenity", "brothel"},
       {"amenity", "bureau_de_change"},
       {"amenity", "cafe"},
       {"amenity", "car_rental"},
       {"amenity", "car_sharing"},
       {"amenity", "car_wash"},
       {"amenity", "casino"},
       {"amenity", "charging_station"},
       {"amenity", "childcare"},
       {"amenity", "cinema"},
       {"amenity", "clinic"},
       {"amenity", "college"},
       {"amenity", "community_centre"},
       {"amenity", "courthouse"},
       {"amenity", "dentist"},
       {"amenity", "doctors"},
       {"amenity", "fast_food"},
       {"amenity", "fuel"},
       {"amenity", "grave_yard"},
       {"amenity", "hospital"},
       {"amenity", "hunting_stand"},
       {"amenity", "kindergarten"},
       {"amenity", "library"},
       {"amenity", "marketplace"},
       {"amenity", "nightclub"},
       {"amenity", "parking"},
       {"amenity", "pharmacy"},
       {"amenity", "post_office"},
       {"amenity", "pub"},
       {"amenity", "public_bookcase"},
       {"amenity", "recycling"},
       {"amenity", "restaurant"},
       {"amenity", "school"},
       {"amenity", "shelter"},
       {"amenity", "taxi"},
       {"amenity", "telephone"},
       {"amenity", "theatre"},
       {"amenity", "toilets"},
       {"amenity", "townhall"},
       {"amenity", "university"},
       {"amenity", "vending_machine"},
       {"amenity", "veterinary"},
       {"amenity", "waste_disposal"},

       {"craft"},

       {"historic", "castle"},
       {"historic", "museum"},
       {"historic", "ship"},

       {"leisure", "fitness_centre"},
       {"leisure", "sauna"},
       {"leisure", "sports_centre"},

       {"man_made", "lighthouse"},

       {"office"},

       {"shop"},

       {"sponsored", "booking"},

       {"sport"},

       {"tourism", "alpine_hut"},
       {"tourism", "apartment"},
       {"tourism", "artwork"},
       {"tourism", "attraction"},
       {"tourism", "camp_site"},
       {"tourism", "caravan_site"},
       {"tourism", "chalet"},
       {"tourism", "gallery"},
       {"tourism", "guest_house"},
       {"tourism", "hostel"},
       {"tourism", "hotel"},
       {"tourism", "information", "office"},
       {"tourism", "motel"},
       {"tourism", "museum"},
       {"tourism", "picnic_site"},
       {"tourism", "resort"},
       {"tourism", "viewpoint"},
       {"tourism", "zoo"}});
}