ip주소로 위치정보 가져오기
GPS를 사용하지 않고, IP주소를 이용해 위치(좌표)정보를 얻을 수 있다. 간단하게 다음과 같이 주소를 요청 하면 http://ip-api.com/json 아래와 같은 결과 값을 얻을 수 있다. {"as":"AS4766 Korea Telecom","city":"Seoul","country":"Republic of Korea","countryCode":"KR","isp":"Korea Telecom","lat":37.5111,"lon":126.9743,"org":"Korea Telecom","query":"220.76.254.166","region":"11","regionName":"Seoul","status":"success","timezone":"Asia/Seoul","zip":""} 위치 좌표가 상세..
더보기
[C언어]socoban소코반(푸시푸시) 게임
#include #include "turboc.h" #define UP 72 #define DOWN 80 #define LEFT 75 #define RIGHT 77 #define STAGE 3 void MapDrow(); void KeyDown(); int Cheracter(); int nx, ny; int ston; int n_stage; char chMap[STAGE][10][15] = { { "###############", "#STAGE 1 ######", "###############", "##### #########", "##### #########", "##### #O#O####", "#####! @@ @ O##", "###### ####", "###############", "#######..
더보기