{"id":20619117,"url":"https://github.com/albertmontserrat/uiplacepicker","last_synced_at":"2025-08-20T11:04:55.556Z","repository":{"id":31535531,"uuid":"35100091","full_name":"AlbertMontserrat/UIPlacePicker","owner":"AlbertMontserrat","description":"Simple UIPlacePicker","archived":false,"fork":false,"pushed_at":"2015-05-19T12:12:45.000Z","size":1664,"stargazers_count":58,"open_issues_count":2,"forks_count":12,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-03-28T19:44:51.709Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AlbertMontserrat.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-05-05T13:07:54.000Z","updated_at":"2022-02-02T08:14:03.000Z","dependencies_parsed_at":"2022-09-04T16:00:31.276Z","dependency_job_id":null,"html_url":"https://github.com/AlbertMontserrat/UIPlacePicker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlbertMontserrat%2FUIPlacePicker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlbertMontserrat%2FUIPlacePicker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlbertMontserrat%2FUIPlacePicker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlbertMontserrat%2FUIPlacePicker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlbertMontserrat","download_url":"https://codeload.github.com/AlbertMontserrat/UIPlacePicker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249067169,"owners_count":21207392,"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","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-11-16T12:10:45.275Z","updated_at":"2025-04-15T11:50:59.290Z","avatar_url":"https://github.com/AlbertMontserrat.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# UIPlacePicker\n\nUIPlacePicker is a UIViewController where the user can pick a location from a map or entering the complete address.\n\n## Features\n\n* Support iOS 6.0 and above.\n* Use iOS 4 MapKit built-in draggable support\n* Use Google services to determinate a location from an address and to determinate the address from one location\n* It works like UIImagePickerViewController, with delegates.\n\n## Screenshot\n\n![](https://github.com/AlbertMontserratGambus/UIPlacePicker/blob/master/Screenshot1.png)\n\n![](https://github.com/AlbertMontserratGambus/UIPlacePicker/blob/master/Screenshot2.png)\n\n## How it works\n\nTo open a new UIPlacePicker just do:\n\n```\npicker = [[UIPlacePicker alloc] initWithUIPlace:nil];\npicker.delegate = self;\n    \n[self presentViewController:picker animated:YES completion:^{\n        \n}];\n```\n\nYou must implement the delegates functions:\n\n```\n-(void)placePickerDidSelectPlace:(UIPlace *)__place{\n    UIPlace *place = __place;\n    [self hidePlacePicker];\n}\n\n-(void)placePickerDidCancel{\n    [self hidePlacePicker];\n}\n\n-(void)hidePlacePicker{\n    [picker dismissViewControllerAnimated:YES completion:^{\n        \n    }];\n}\n```\n\nWhen you hace already a UIPlace, you can also call the UIPlacePicker with this place pre-loaded:\n\n```\npicker = [[UIPlacePicker alloc] initWithUIPlace:place];\npicker.delegate = self;\n    \n[self presentViewController:picker animated:YES completion:^{\n        \n}];\n```\n\nAnd if you want only to show the place and disable the edit functionalities, just do:\n\n```\npicker = [[UIPlacePicker alloc] initWithUIPlaceOnlyVisitor:place];\npicker.delegate = self;\n    \n[self presentViewController:picker animated:YES completion:^{\n        \n}];\n```\n\n## License \n\nThis project is released under MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falbertmontserrat%2Fuiplacepicker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falbertmontserrat%2Fuiplacepicker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falbertmontserrat%2Fuiplacepicker/lists"}