Skip to content

Commit b542cc6

Browse files
committed
expand search for pizza, burger and sushi
1 parent 9fa4692 commit b542cc6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pois/AddressParseResult.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,11 +204,11 @@ export class AddressParseResult {
204204
{ k: 'poi_education', q: ['amenity=school', 'building=school', 'building=university'], i: 'school' },
205205

206206
{ k: 'poi_fast_food', q: ['amenity=fast_food'], i: 'restaurant' },
207-
{ k: 'poi_food_burger', q: ['cuisine=burger', 'name~burger'], i: 'restaurant' },
207+
{ k: 'poi_food_burger', q: ['cuisine=burger', 'name~burger', 'cuisine=american', 'origin=american'], i: 'restaurant' },
208208
{ k: 'poi_food_kebab', q: ['cuisine=kebab', 'name~kebab'], i: 'restaurant' },
209-
{ k: 'poi_food_pizza', q: ['cuisine=pizza', 'name~pizza'], i: 'restaurant' },
209+
{ k: 'poi_food_pizza', q: ['cuisine=pizza', 'name~pizza', 'cuisine=italian', 'origin=italian'], i: 'restaurant' },
210210
{ k: 'poi_food_sandwich', q: ['cuisine=sandwich', 'name~sandwich'], i: 'restaurant' },
211-
{ k: 'poi_food_sushi', q: ['cuisine=sushi', 'name~sushi'], i: 'restaurant' },
211+
{ k: 'poi_food_sushi', q: ['cuisine=sushi', 'name~sushi', 'cuisine=japanese', 'origin=japanese'], i: 'restaurant' },
212212
{ k: 'poi_food_chicken', q: ['cuisine=chicken', 'name~chicken'], i: 'restaurant' },
213213

214214
{ k: 'poi_gas_station', q: ['amenity=fuel'], i: 'local_gas_station' },

0 commit comments

Comments
 (0)