Donghoon Kim

can find places with multiple tags

<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JavaScriptSettings">
<option name="languageLevel" value="ES6" />
</component>
</project>
\ No newline at end of file
......@@ -48,7 +48,13 @@
service.nearbySearch({
location: pos,
radius: 500,
type: ['gym', 'store']
type: ['gym']
}, callback);
service.nearbySearch({
location: pos,
radius: 500,
type: ['store']
}, callback);
});
......