Loading...
Loading...
Use when the user asks for nearby parking lots or 근처 주차장/공영주차장. Always ask the user's current location first, then use official Data.go.kr public parking data through k-skill-proxy or the parking-lot-search package.
npx skill4agent add nomadamas/k-skill parking-lot-search공영전국주차장정보표준데이터현재 위치를 알려주세요. 동네/역명/랜드마크/위도·경도 중 편한 형식으로 보내주시면 근처 공영주차장을 찾아볼게요.가까운 역명이나 동 이름으로 한 번만 더 알려주세요.https://www.data.go.kr/data/15012896/standard.dohttps://www.data.go.kr/data/15012896/openapi.dohttp://api.data.go.kr/openapi/tn_pubr_prkplce_info_api/v1/parking-lots/searchhttps://m.map.kakao.com/actions/searchView?q=<query>https://place-api.map.kakao.com/places/panel3/<confirmId>시도 + 시군구/v1/parking-lots/searchparking-lot-searchconst { searchNearbyParkingLotsByLocationQuery } = require("parking-lot-search");
async function main() {
const result = await searchNearbyParkingLotsByLocationQuery("광화문", {
limit: 3,
radius: 1500
});
console.log(result.anchor);
console.log(result.items);
}
main().catch((error) => {
console.error(error);
process.exitCode = 1;
});