{"id":16283503,"url":"https://github.com/tezpark/tezgeocoder","last_synced_at":"2025-07-29T10:08:57.178Z","repository":{"id":56924145,"uuid":"91305569","full_name":"tezpark/TezGeocoder","owner":"tezpark","description":"Geocoding and reverse-geocoding","archived":false,"fork":false,"pushed_at":"2017-05-15T16:21:52.000Z","size":2074,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-16T01:40:44.004Z","etag":null,"topics":["geocode","geocoder","geocoding","ios","objc","objective-c","reverse-geocode","reverse-geocoding"],"latest_commit_sha":null,"homepage":"","language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tezpark.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-05-15T07:03:56.000Z","updated_at":"2019-04-11T02:02:55.000Z","dependencies_parsed_at":"2022-08-21T05:20:35.350Z","dependency_job_id":null,"html_url":"https://github.com/tezpark/TezGeocoder","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/tezpark/TezGeocoder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tezpark%2FTezGeocoder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tezpark%2FTezGeocoder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tezpark%2FTezGeocoder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tezpark%2FTezGeocoder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tezpark","download_url":"https://codeload.github.com/tezpark/TezGeocoder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tezpark%2FTezGeocoder/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267668689,"owners_count":24124966,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["geocode","geocoder","geocoding","ios","objc","objective-c","reverse-geocode","reverse-geocoding"],"created_at":"2024-10-10T19:13:36.326Z","updated_at":"2025-07-29T10:08:57.144Z","avatar_url":"https://github.com/tezpark.png","language":"Objective-C","readme":"[![Platform](https://img.shields.io/cocoapods/p/TezGeocoder.svg?style=flat)](http://cocoapods.org/pods/TezGeocoder)\n[![GitHub language](https://img.shields.io/badge/language-objective--c-6BAEE4.svg)]()\n[![Version](https://img.shields.io/cocoapods/v/TezGeocoder.svg?style=flat)](http://cocoapods.org/pods/TezGeocoder)\n[![License](https://img.shields.io/cocoapods/l/TezGeocoder.svg?style=flat)](http://cocoapods.org/pods/TezGeocoder)\n[![Travis build](https://travis-ci.org/tezpark/TezGeocoder.svg?branch=master)](https://travis-ci.org/tezpark/TezGeocoder)\n\n# TezGeocoder\nGeocoding and reverse-geocoding\n\n## Summary\n* To support geocoding and reverse geocoding.\n* This library only uses the iOS framework (CoreLocation, Contacts)\n* Geocoding\n  * Coordinate(latitude, longitude) -\u003e Address information\n* Reverse-geocoding\n  * Address information -\u003e Coordinate(latitude, longitude)\n\n## Screenshots\n![Sample1](./Sample/Sample1.gif)\n![Sample2](./Sample/Sample2.gif)\n\n## Requirements\n* iOS SDK \u003e= 8.0\n\n## Installation\n#### CocoaPods\nTezGeocoder is available through [CocoaPods](http://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod \"TezGeocoder\"\n```\n\n## Usage\n```objective-c\n// Reverse-geocoding (Get coordinate with address info)\nCLLocationCoordinate2D coordinate = CLLocationCoordinate2DMake(37.499378, 127.043054);\nTezGeocoder* reverseGeocoder = [[TezGeocoder alloc] initWithLatitude:coordinate.latitude longitude:coordinate.longitude];\nNSLog(@\"(%@) %@ %@ %@ %@ %@ %@ %@\",\n      [reverseGeocoder postalCode],\n      [reverseGeocoder country],\n      [reverseGeocoder countryCode],\n      [reverseGeocoder state],\n      [reverseGeocoder city],\n      [reverseGeocoder street],\n      [reverseGeocoder subStreet],\n      [reverseGeocoder name]);\n      \n\n// Geocoding (Get address info with coordinate)\nNSString *addressStr = @\"Yeoksam-dong ,Gangnam-gu, Seoul\";\nTezGeocoder *geocoder = [[TezGeocoder alloc] initWithAddressString:addressStr];\nNSLog(@\"lat:%f lon:%f\", geocoder.location.coordinate.latitude, geocoder.location.coordinate.longitude);    \n```\n\n\n## Author\n\nTezPark, ptswin@gmail.com\n\n## License\n\nTezGeocoder is available under the MIT license. See the LICENSE file for more info.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftezpark%2Ftezgeocoder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftezpark%2Ftezgeocoder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftezpark%2Ftezgeocoder/lists"}