Loading...
Loading...
Use when the user asks for nearby public/open restrooms or 근처 화장실. Always ask the user's current location first, then use the official nationwide public-restroom standard dataset plus Kakao anchor resolution.
npx skill4agent add nomadamas/k-skill public-restroom-nearby공중화장실정보현재 위치를 알려주세요. 동네/역명/랜드마크/위도·경도 중 편한 형식으로 보내주시면 근처 공중화장실을 찾아볼게요.가까운 역명이나 동 이름으로 한 번만 더 알려주세요.https://www.data.go.kr/data/15012892/standard.dohttps://file.localdata.go.kr/file/download/public_restroom_info/infohttps://file.localdata.go.kr/file/download/public_restroom_info/info?orgCode=<시도코드>https://file.localdata.go.kr/file/public_restroom_info/infohttps://m.map.kakao.com/actions/searchView?q=<query>https://place-api.map.kakao.com/places/panel3/<confirmId>공중화장실정보map.kakao.com/link/map/...const { searchNearbyPublicRestroomsByLocationQuery } = require("public-restroom-nearby");
async function main() {
const result = await searchNearbyPublicRestroomsByLocationQuery("광화문", {
limit: 3
});
console.log(result.anchor);
console.log(result.items);
}
main().catch((error) => {
console.error(error);
process.exitCode = 1;
});