Donghoon Kim

can find places with multiple tags

1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<project version="4">
3 + <component name="JavaScriptSettings">
4 + <option name="languageLevel" value="ES6" />
5 + </component>
6 +</project>
...\ No newline at end of file ...\ No newline at end of file
...@@ -48,7 +48,13 @@ ...@@ -48,7 +48,13 @@
48 service.nearbySearch({ 48 service.nearbySearch({
49 location: pos, 49 location: pos,
50 radius: 500, 50 radius: 500,
51 - type: ['gym', 'store'] 51 + type: ['gym']
52 + }, callback);
53 +
54 + service.nearbySearch({
55 + location: pos,
56 + radius: 500,
57 + type: ['store']
52 }, callback); 58 }, callback);
53 59
54 }); 60 });
......