본문 바로가기

CUSTOM

Google Custom Search 사용하기 1. https://console.developers.google.com 이동해서 프로젝트를 생성하자!2. 프로젝트를 생성하고 나면 APIS & auth 항목으로 이동하자 그리고 Custom Search API를 활성화 시키자 (하루에 100개 까지 무료로 찾을 수 있다.) 3. APIs & auth 에서 Credentials 에서 API Access 키를 발급 받는다. 아래의 그림에서 Create new Key를 누르면.. 4. 이와 같이 4가지 종류의 키를 발급 할 수 있다. 5. https://developers.google.com/custom-search/json-api/v1/libraries 여기로 이동해서 현재 개발해서 사용하려는 언어에 맞게 라이브러리를 받아서 사용하면 된다.~! 더보기
[iOS] PBJVision iOS에서 카메라를 커스텀하여 사용할 경우 아주 유용한 라이브러리이다. VisionVision is an iOS camera engine that supports touch-to-record video, slow motion video (120 fps for supporting hardware, which is currently only iPhone 5S), and photo capture. It is compatible with both iOS 6 and iOS 7 and supports 64-bit. Pause and resume video capture is also possible without having to use a touch gesture as the sample project provi.. 더보기
[Android] Map InfoWindow Custom하기~! 1. InfoWindowAdapter 인터페이스를 상속받아 구현하기~! public class SomethingWindowAdapter implements InfoWindowAdapter{ /* * Constructor */public SomethingWindowAdapter (final Context context) {this.mView = (View)((LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(리소스, null);}//end constructor/* * InfoWindowAdapter */@Overridepublic View getInfoContents (final Marker marker) {~.. 더보기