forked from organicmaps/organicmaps
[editor] Editable types/fields fixes.
This commit is contained in:
parent
1b9c99fde9
commit
dca2128231
1 changed files with 6 additions and 3 deletions
|
@ -97,8 +97,8 @@ static unordered_map<string, TypeDescription> const gEditableTypes = {
|
|||
{"amenity-doctors", {{EType::FMD_INTERNET}, true, true}},
|
||||
{"amenity-drinking_water", {{}, true, false}},
|
||||
{"amenity-embassy", {{}, true, true}},
|
||||
{"amenity-fast_food", {{EType::FMD_OPERATOR, EType::FMD_CUISINE}, true, true}},
|
||||
{"amenity-ferry_terminal", {{EType::FMD_OPERATOR}, true, true}},
|
||||
{"amenity-fast_food", {{EType::FMD_OPERATOR, EType::FMD_CUISINE, EType::FMD_INTERNET}, true, true}},
|
||||
{"amenity-ferry_terminal", {{EType::FMD_OPERATOR, EType::FMD_INTERNET}, true, true}},
|
||||
{"amenity-fire_station", {{}, true, true}},
|
||||
{"amenity-fountain", {{}, true, false}},
|
||||
{"amenity-fuel", {{EType::FMD_OPERATOR, EType::FMD_INTERNET}, true, true}},
|
||||
|
@ -142,6 +142,7 @@ static unordered_map<string, TypeDescription> const gEditableTypes = {
|
|||
{"natural-peak", {{EType::FMD_WIKIPEDIA, EType::FMD_ELE}, true, false}},
|
||||
{"natural-spring", {{EType::FMD_WIKIPEDIA}, true, false}},
|
||||
{"natural-waterfall", {{EType::FMD_WIKIPEDIA}, true, false}},
|
||||
{"office", {{EType::FMD_INTERNET}, true, true}},
|
||||
{"office-company", {{}, true, true}},
|
||||
{"office-government", {{}, true, true}},
|
||||
{"office-lawyer", {{}, true, true}},
|
||||
|
@ -153,6 +154,7 @@ static unordered_map<string, TypeDescription> const gEditableTypes = {
|
|||
{"railway-station", {{EType::FMD_OPERATOR}, true, false}},
|
||||
{"railway-subway_entrance", {{}, true, false}},
|
||||
{"railway-tram_stop", {{EType::FMD_OPERATOR}, true, false}},
|
||||
{"shop", {{EType::FMD_INTERNET}, true, true}},
|
||||
{"shop-alcohol", {{EType::FMD_INTERNET}, true, true}},
|
||||
{"shop-bakery", {{EType::FMD_INTERNET}, true, true}},
|
||||
{"shop-beauty", {{EType::FMD_INTERNET}, true, true}},
|
||||
|
@ -188,7 +190,8 @@ static unordered_map<string, TypeDescription> const gEditableTypes = {
|
|||
{"shop-supermarket", {{EType::FMD_OPERATOR, EType::FMD_INTERNET}, true, true}},
|
||||
{"shop-toys", {{EType::FMD_INTERNET}, true, true}},
|
||||
{"tourism-alpine_hut", {{EType::FMD_ELE, EType::FMD_OPEN_HOURS, EType::FMD_OPERATOR, EType::FMD_WEBSITE, EType::FMD_INTERNET}, true, false}},
|
||||
{"tourism-artwork", {{EType::FMD_WEBSITE, EType::FMD_WIKIPEDIA}, true, false}},
|
||||
{"tourism-artwork", {{EType::FMD_WIKIPEDIA}, true, false}},
|
||||
{"tourism-attraction", {{EType::FMD_WIKIPEDIA, EType::FMD_WEBSITE}, true, false}},
|
||||
{"tourism-camp_site", {{EType::FMD_OPERATOR, EType::FMD_WEBSITE, EType::FMD_OPEN_HOURS, EType::FMD_INTERNET}, true, false}},
|
||||
{"tourism-caravan_site", {{EType::FMD_WEBSITE, EType::FMD_OPERATOR, EType::FMD_INTERNET}, true, false}},
|
||||
{"tourism-guest_house", {{EType::FMD_OPERATOR, EType::FMD_INTERNET}, true, true}},
|
||||
|
|
Loading…
Add table
Reference in a new issue