{"id":22308430,"url":"https://github.com/logisticinfotech/react-native-geocoding-reversgeocoding","last_synced_at":"2026-02-24T18:36:20.420Z","repository":{"id":264010058,"uuid":"501677729","full_name":"logisticinfotech/react-native-geocoding-reversgeocoding","owner":"logisticinfotech","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-28T04:38:11.000Z","size":1567,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-02-17T08:43:29.928Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/logisticinfotech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-06-09T14:04:08.000Z","updated_at":"2025-03-07T12:15:07.000Z","dependencies_parsed_at":"2025-10-12T05:50:30.085Z","dependency_job_id":"f562bdc4-6348-4dd7-90f8-f21dfbfc82fd","html_url":"https://github.com/logisticinfotech/react-native-geocoding-reversgeocoding","commit_stats":null,"previous_names":["logisticinfotech/react-native-geocoding-reversgeocoding"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/logisticinfotech/react-native-geocoding-reversgeocoding","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logisticinfotech%2Freact-native-geocoding-reversgeocoding","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logisticinfotech%2Freact-native-geocoding-reversgeocoding/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logisticinfotech%2Freact-native-geocoding-reversgeocoding/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logisticinfotech%2Freact-native-geocoding-reversgeocoding/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/logisticinfotech","download_url":"https://codeload.github.com/logisticinfotech/react-native-geocoding-reversgeocoding/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logisticinfotech%2Freact-native-geocoding-reversgeocoding/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29794814,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T16:37:37.581Z","status":"ssl_error","status_checked_at":"2026-02-24T16:37:37.074Z","response_time":75,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-12-03T20:14:00.854Z","updated_at":"2026-02-24T18:36:20.377Z","avatar_url":"https://github.com/logisticinfotech.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-native-geocoding-reversegeocoding\n\n\n* No need to use Native modules anymore.\n* No need to generate Google API key for geocoding functionality in react-native anymore.\n* This lib returns the Address/Lat-Lang WITHOUT using GOOGLE API key\n\n## Demo\n\n![This demo.](https://raw.githubusercontent.com/logisticinfotech/react-native-geocoding-reversgeocoding/main/react-native-geocoding-reversegeocoding.gif?token=GHSAT0AAAAAABUL243UMV7P42UHDDBNN4OAYVG4HNQ \"This is a sample.\")\n\n## Installation\n\n```sh\nnpm install @logisticinfotech/react-native-geocoding-reversegeocoding\n```\n\n### Android \n\u003e It'll auto link the library. No need to manually install gradle project.\n\n### iOS\n\u003e pod installation\n\n```sh\ncd ios\npod install\ncd ..\n```\n\u003e If you're having M1 Chip Mac, please follow below command\n\n```sh\ncd ios\narch -x86_64 pod install\ncd ..\n```\n\n## Response/Output\n\n\u003e : `\"getLocationFromAddress\"`\n\n```js\n{\n  \"result\": {\n    \"lattitude\": *2.3*****,\n    \"longitude\": *0.7*****\n  }\n}\n```\n\u003e : `\"getAddressFromLocation\"`\n\n```js\n{\n  \"result\": {\n    \"adminArea\": \"**j**at\",\n    \"city\": \"***ko**\",\n    \"state\": \"**j**at\",\n    \"country\": \"India\",\n    \"countryCode\": \"IN\",\n    \"feature\": \"8*****9F\",\n    \"formattedAddress\": \"Ma*****, ****, ****006, India\",\n    \"locality\": \"***ko**\",\n    \"position\": {\n      \"lat\": \"2.3*****\",\n      \"lng\": \"0.7*****\"\n    },\n    \"postalCode\": \"***00**\",\n    \"streetName\": \"\",\n    \"streetNumber\": \"\",\n    \"subAdminArea\": \"***ko**\",\n    \"subLocality\": \"****ap**\"\n  }\n}\n```\n\n## Usage\n\n```js\nimport { \n    getLocationFromAddress, \n    getAddressFromLocation \n} from \"react-native-geocoding-reversegeocoding\";\n\n// ...\n// ...\n\nconst result = await getLocationFromAddress(\"Ma****ar chowk, Ra****\"); // String\nor\nawait getLocationFromAddress(\"Ma****ar chowk, Ra****\")\n    .then((response)=\u003e {\n        if(response?.result) {\n            console.log(response.result)\n        }\n    }).catch((error)=\u003e{\n        console.log(error)\n    })\n\n// ...\n// ...\nconst result = await getAddressFromLocation(*2.33*****, *0.76*****); // Double\nor\nawait getAddressFromLocation(*2.33*****, *0.76*****)\n    .then((response)=\u003e {\n        if(response?.result) {\n            console.log(response.result)\n        }\n    }).catch((error)=\u003e{\n        console.log(error)\n    })\n```\n\n## Contributing\n\nSee the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flogisticinfotech%2Freact-native-geocoding-reversgeocoding","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flogisticinfotech%2Freact-native-geocoding-reversgeocoding","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flogisticinfotech%2Freact-native-geocoding-reversgeocoding/lists"}