{"id":1243,"url":"https://github.com/ZhuoranTan/LocationPicker","last_synced_at":"2025-07-30T20:33:03.368Z","repository":{"id":6977761,"uuid":"54884094","full_name":"zhuorantan/LocationPicker","owner":"zhuorantan","description":"A ready for use and fully customizable location picker for your app","archived":true,"fork":false,"pushed_at":"2022-03-08T00:08:09.000Z","size":13431,"stargazers_count":400,"open_issues_count":12,"forks_count":79,"subscribers_count":11,"default_branch":"master","last_synced_at":"2024-09-19T08:17:14.500Z","etag":null,"topics":["ios","location","map","ui","viewcontroller"],"latest_commit_sha":null,"homepage":"","language":"Swift","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/zhuorantan.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2016-03-28T10:14:20.000Z","updated_at":"2024-09-06T08:52:40.000Z","dependencies_parsed_at":"2022-11-28T10:34:05.885Z","dependency_job_id":null,"html_url":"https://github.com/zhuorantan/LocationPicker","commit_stats":null,"previous_names":["jerometan1997/locationpicker"],"tags_count":17,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhuorantan%2FLocationPicker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhuorantan%2FLocationPicker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhuorantan%2FLocationPicker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhuorantan%2FLocationPicker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zhuorantan","download_url":"https://codeload.github.com/zhuorantan/LocationPicker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228187614,"owners_count":17882335,"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":["ios","location","map","ui","viewcontroller"],"created_at":"2024-01-05T20:15:42.060Z","updated_at":"2024-12-04T20:31:11.518Z","avatar_url":"https://github.com/zhuorantan.png","language":"Swift","funding_links":[],"categories":["Hardware"],"sub_categories":["Location"],"readme":"# LocationPicker\n\nA ready for use and fully customizable location picker for your app.\n\n![](https://raw.githubusercontent.com/JeromeTan1997/LocationPicker/master/Screenshots/locationpicker.gif)\n\n![Language](https://img.shields.io/badge/language-Swift%204.1-orange.svg)\n[![CocoaPods](https://img.shields.io/cocoapods/v/LocationPickerViewController.svg?style=flat)](http://cocoadocs.org/docsets/LocationPickerViewController/)\n[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)\n![License](https://img.shields.io/github/license/JeromeTan1997/LocationPicker.svg?style=flat)\n\n* [Features](#features)\n* [Installation](#installation)\n    - [Cocoapods](#cocoapods)\n    - [Carthage](#carthage)\n    - [Swift Package Manager](#swift-package-manager)\n* [Quick Start](#quick-start)\n    - [Programmatically](#programmatically)\n    - [Storyboard](#storyboard)\n* [Customization](#customization)\n    - [Methods](#methods)\n    - [Boolean](#boolean)\n    - [Text](#text)\n    - [Color](#color)\n    - [Image](#image)\n    - [Other](#other)\n* [Callback](#callback)\n    - [Closure](#closure)\n    - [Delegate and Data Source](#delegate-and-data-source)\n    - [Override](#override)\n* [Location Item](#location-item)\n    - [Storage](#storage)\n    - [Equatable](#equatable)\n    - [Properties](#properties)\n    - [Initialization](#initialization)\n* [Change Log](#change-log)\n* [Contribute](#contribute)\n* [License](#license)\n\n## Features\n* Easy to use - A fully functional location picker can be integrated to your app within __5 lines__ of codes. `LocationPicker` can be subclassed in storyboard or programmatically.\n* Comprehensive - `LocationPicker` provides [Closure](#closure), [Delegate and Data Source](#delegate-and-data-source), [Override](#override) for callback to suit your need.\n* All kinds of locations to pick - Users can pick locations from their current location, search results or a list of locations provided by your app.\n* Fully customizable - `LocationPicker` provides a great deal of customizability allowing all text to be customized along with the colors and icons. Original UI elements like `UISearchBar`, `UITableView`, `MKMapItem` are also accessible if you want to do some deep customization.\n* Permission worry free - `LocationPicker` requests location access for you.\n\n## Installation\n\n### Cocoapods\n\n[CocoaPods](http://cocoapods.org) is a dependency manager for Cocoa projects.\n\nYou can install it with the following command:\n\n```bash\n$ gem install cocoapods\n```\n\nTo integrate `LocationPicker` into your Xcode project using CocoaPods, specify it in your `Podfile`:\n\n```ruby\nplatform :ios, '8.0'\nuse_frameworks!\n\ntarget 'YourApp' do\n    pod 'LocationPickerViewController'\nend\n```\n\n### Carthage\n\n[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that automates the process of adding frameworks to your Cocoa application.\n\nYou can install Carthage with [Homebrew](http://brew.sh/) using the following command:\n\n```bash\n$ brew update\n$ brew install carthage\n```\n\nTo integrate `LocationPicker` into your Xcode project using Carthage, specify it in your `Cartfile`:\n\n```ogdl\ngithub \"JeromeTan1997/LocationPicker\"\n```\n\n### Swift Package Manager\n\n[Swift Package Manager](#https://swift.org/package-manager/) is a tool for managing the distribution of Swift code.\n\nSwift Package Manager is currently only available with the Swift 3 development [snapshots](#https://swift.org/download/).\n\nTo integrate `LocationPicker` into your Xcode project using Swift Package Manager, specify it in your `Packages.swift`:\n\n```swift\nimport PackageDescription\n\nlet package = Package(\n    name: \"Your Project Name\",\n    targets: [],\n    dependencies: [\n        .Package(url: \"https://github.com/JeromeTan1997/LocationPicker.git\", versions: \"2.0.0\" ..\u003c Version.max)\n    ]\n)\n```\n\n## Quick Start\n\n### Programmatically\n\nImport `LocationPicker`\n\n```swift\nimport LocationPicker\n```\n\n__NOTE__: If you installed via Cocoapods:\n\n```swift\nimport LocationPickerViewController\n```\n\nShowing `LocationPicker` via navigation controller is very simple, just create one, add a completion closure and push it.\n```swift\nlet locationPicker = LocationPicker()\nlocationPicker.pickCompletion = { (pickedLocationItem) in\n    // Do something with the location the user picked.\n}\nnavigationController!.pushViewController(locationPicker, animated: true)\n```\n\nTo present `LocationPicker`, it needs to be nested inside a navigation controller so that it can be dismissed.\n```swift\nlet locationPicker = LocationPicker()\nlocationPicker.pickCompletion = { (pickedLocationItem) in\n    // Do something with the location the user picked.\n}\nlocationPicker.addBarButtons()\n// Call this method to add a done and a cancel button to navigation bar.\n\nlet navigationController = UINavigationController(rootViewController: customLocationPicker)\npresentViewController(navigationController, animated: true, completion: nil)\n```\n\n### Storyboard\n\n1. Drag a __View Controller__ to your Storyboard.\n2. In the __Identity inspector__, Entry `LocationPicker` both in __Class__ and __Module__ field.\n![](https://raw.githubusercontent.com/JeromeTan1997/LocationPicker/master/Screenshots/storyboard.png)\n__NOTE__: If you installed via Cocopods, the __Module__ field should be `LocationPickerViewController`\n3. Create a __segue__ and add a __Identifier__ to it.\n4. Add the following codes in the source view controller.\n```swift\noverride func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {\n    if segue.identifier == \"Your Identifier\" {\n        let locationPicker = segue.destinationViewController as! LocationPicker\n        locationPicker.pickCompletion = { (pickedLocationItem) in\n            // Do something with the location the user picked.\n        }\n    }\n}\n```\n\nThat's __all__ you need to have a fully functional location picker in your app. How easy!\n\n__Note__: To use current location, don't forget to add `NSLocationWhenInUseUsageDescription` to your `info.plist`\n\n## Customization\n\n### Methods\n\n##### `func addBarButtons`\n\nThis method provides 3 optional parameter. `doneButtonItem` and `cancelButtonItem` can be set as the customized `UIBarButtonItem` object. `doneButtonOrientation` is used to determine how to align these two buttons. If none of the parameters is provided, two system style buttons would be used, and the done button would be put on the right side.\n\nAfter this method is called, these two buttons can be accessed via `barButtonItems` property.\n\n##### `func setColors`\n\nThis method aims to set colors more conveniently. `themColor` will be set to `currentLocationIconColor`, `searchResultLocationIconColor`, `alternativeLocationIconColor`, `pinColor`. `primaryTextColor` and `secondaryTextColor` can also be set by this method.\n\n##### `func setLocationDeniedAlertControllerTitle`\n\nThis method provides the text of `locationDeniedAlertController` simultaneously.\n\nIf this method is not called, the alert controller will be presented like this\n\n![](https://raw.githubusercontent.com/JeromeTan1997/LocationPicker/master/Screenshots/location-access.png)\n\n__Grant__ button will direct user to the Settings where location access can be changed.\n\n### Boolean\n\n| Property name | Default | Target | Remark |\n| ------------- |:-------:| ------ | ------ |\n| allowArbitraryLocation | false | | Allows the selection of locations that did not match or exactly match search results |\n| mapViewZoomEnabled | true | mapView.zoomEnabled | Whether the map view can zoom in and out |\n| mapViewShowsUserLocation | true | mapView.showsUserLocation | Whether the map view shows user's location |\n| mapViewScrollEnabled | true | mapView.scrollEnabled | Whether user can scroll the map view |\n| isRedirectToExactCoordinate | true | | Whether redirect to the exact coordinate after queried |\n| alternativeLocationEditable | false | tableViewDataSource.tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) | Whether user can delete the provided locations in table view |\n| forceReverseGeocoding | false | | Whether to force reverse geocoding or not. If this property is set to `true`, the location will be reverse geocoded |\n\n__Note__: If `alternativeLocationEditable` is set to true, please adopt __Location Deletion__ callback to delete the location from database or memory.\n\n### Text\n\n| Property name | Default | Target | Remark |\n| ------------- |:-------:| ------ | ------ |\n| currentLocationText | \"Current Location\" | currentLocationCell.locationNameLabel.text | The text that indicates the user's current location |\n| searchBarPlaceholder | \"Search for location\" | searchBar.placeholder | The text that ask user to search for locations |\n| locationDeniedAlertTitle | \"Location access denied\" | alertController.title | The text of the alert controller's title |\n| locationDeniedAlertMessage | \"Grant location access to use current location\" | alertController.message | The text of the alert controller's message |\n| locationDeniedGrantText | \"Grant\" | alertAction.title | The text of the alert controller's _Grant_ button |\n| locationDeniedCancelText | \"Cancel\" | alertAction.title | The text of the alert controller's _Cancel_ button |\n\n### Color\n\n| Property name | Default | Target | Remark |\n| ------------- |:-------:| ------ | ------ |\n| tableViewBackgroundColor | UIColor.whiteColor() | tableView.backgroundColor | The background color of the table view |\n| currentLocationIconColor | UIColor(hue: 0.447, saturation: 0.731, brightness: 0.569, alpha: 1) | UIImage() | The color of the icon showed in current location cell, the icon image can be changed via property `currentLocationIconImage` |\n| searchResultLocationIconColor | UIColor(hue: 0.447, saturation: 0.731, brightness: 0.569, alpha: 1) | UIImage() | The color of the icon showed in search result location cells, the icon image can be changed via property `searchResultLocationIconImage` |\n| alternativeLocationIconColor | UIColor(hue: 0.447, saturation: 0.731, brightness: 0.569, alpha: 1) | UIImage() | The color of the icon showed in alternative location cells, the icon image can be changed via property 'alternativeLocationIconImage' |\n| pinColor | UIColor(hue: 0.447, saturation: 0.731, brightness: 0.569, alpha: 1) | UIImage() | The color of the pin showed in the center of map view, the pin image can be changed via property `pinImage` |\n| primaryTextColor | UIColor(colorLiteralRed: 0.34902, green: 0.384314, blue: 0.427451, alpha: 1) | Multiple | The text color of search bar and location name label in location cells |\n| secondaryTextColor | UIColor(colorLiteralRed: 0.541176, green: 0.568627, blue: 0.584314, alpha: 1) | Multiple | The text color of location address label in location cells |\n\n### Image\n\n| Property name | Target | Remark |\n| ------------- | ------ | ------ |\n| currentLocationIconImage | currentLocationCell.iconView.image | The image of the icon showed in current location cell, this image's color won't be affected by property `currentLocationIconColor` |\n| searchResultLocationIconImage | searchResultLocationCell.iconView.image | The image of the icon showed in search result location cells, this image's color won't be affected by property `searchResultLocationIconColor` |\n| alternativeLocationIconImage | alternativeLocationCell.iconView.image | The image of the icon showed in alternative location cells, this image's color won't be affected by property `alternativeLocationIconColor` |\n\n### Other\n\n| Property name | Type | Default | Remark |\n| ------------- |:----:|:-------:| ------ |\n| alternativeLocations | [LocationItem]? | nil | Locations that show under current location and search result locations |\n| locationDeniedAlertController | UIAlertController? | nil | Alert controller that appear when user request current location but denied the app's location permission |\n| defaultLongitudinalDistance | Double | 1000 | Longitudinal distance of the map view shows when user select a location and before zoom in or zoom out |\n| searchDistance | Double | 10000 | Distance in meters that is used to search locations |\n\n__Note__:\n* Alternative locations can also be provided via __Data Source__.\n* You don't need to set the `locationDeniedAlertController` if you are satisfied with the alert controller included in `LocationPicker`. You can change the text of the default alert controller via `func setLocationDeniedAlertControllerTitle`. If you want to do something other than presenting an alert controller, you can adopt __Permission Denied Handler__ callback.\n\n## Callbacks\n\n`LocationPicker` provides three different types of callbacks, they are __Closure__, __Delegate and Data Source__ and __Override__, you can choose whichever you like. In most cases, using closures is the most convenient way. If you are already subclassing `LocationPicker`, override may be the best choice.\n\n### Closure\n\n##### Location Pick\n\nThis completion closure is used to get user's final decision. It would be executed only once for every `LocationPicker` object when it is about to be dismissed.\n\n```swift\nlocationPicker.pickCompletion = { (pickedLocationItem) in\n    // Do something with the location the user picked.\n}\n```\n\n##### Location Selection\n\nThis completion closure is used to get user's every location selection. It would be executed every time user chooses a location in the list or drag the map view.\n\n```swift\nlocationPicker.selectCompletion = { (selectedLocationItem) in\n    // Do something with user's every selection.\n}\n```\n\n##### Location Deletion\n\nIf `alternativeLocations` is not empty and `alternativeLocationEditable` is set to `true`, this closure will be executed when user delete a location item in the table view.\n\n```swift\nlocationPicker.deleteCompletion = { (deletedLocationItem) in\n    // Delete the location.\n}\n```\n\n##### Permission Denied Handler\n\nBy default, when user request current location but denied the app's location access, `LocationPicker` will present an alert controller that links to the Settings. You can change the text in the alert controller by calling `func setLocationDeniedAlertControllerTitle`. If you need to do something other than presenting an alert controller, you can set this closure.\n\n```swift\nlocationPicker.locationDeniedHandler = { (locationPicker) in\n    // Ask user to grant location access of this app.\n}\n```\n\n### Delegate and Data Source\n\nTo use a delegate or data source, the following steps need to be taken:\n\n1. Conform to `LocationPickerDelegate` or `LocationPickerDataSource`\n```swift\nclass YourViewController: LocationPickerDelegate, LocationPickerDataSource\n```\n2. Set `delegate` or `dataSource` to this class\n```swift\nlocationPicker.delegate = self\nlocationPicker.dataSource = self\n```\n3. Implement methods in `delegate` or `dataSource`\n\n##### Location Pick\n\nThis delegate method is used to get user's final decision. It would be called only once for every `LocationPicker` object when it is about to be dismissed.\n\n```swift\nfunc locationDidPick(locationItem: LocationItem) {\n    // Do something with the location the user picked.\n}\n```\n\n##### Location Selection\n\nThis delegate method is used to get user's every location selection. It would be called every time user chooses a location in the list or drag the map view.\n\n```swift\nfunc locationDidSelect(locationItem: LocationItem) {\n    // Do something with user's every selection.\n}\n```\n\n##### Alternative Locations\n\nThis data source method is used to provide locations that show under current location and search result locations. Instead of using delegate, you can also just set the `alternativeLocations` property.\n\n```swift\nfunc numberOfAlternativeLocations() -\u003e Int {\n    // Get the number of locations you need to add to the location list.\n    return count\n}\nfunc alternativeLocationAtIndex(index: Int) -\u003e LocationItem {\n    // Get the location item for the specific index.\n    return locationItem\n}\n```\n\n##### Location Deletion\n\nIf `alternativeLocations` is not empty and `alternativeLocationEditable` is set to `true`, this data source method will be called when user delete a location item in the table view.\n\n```swift\nfunc commitAlternativeLocationDeletion(locationItem: LocationItem) {\n    // Delete the location.\n}\n```\n\n##### Permission Denied Handler\n\nBy default, when user request current location but denied the app's location access, `LocationPicker` will present an alert controller that links to the Settings. You can change the text in the alert controller by calling `func setLocationDeniedAlertControllerTitle`. If you need to do something other than presenting an alert controller, you can set this delegate method.\n\n```swift\nfunc locationDidDeny(locationPicker: LocationPicker) {\n    // Ask user to grant location access of this app.\n}\n```\n\n### Override\n\nIf you prefer to subclass `LocationPicker`, these methods can be overridden to achieve the same result as closure and delegate.\n\n##### Location Pick\n\nThis method is used to get user's final decision. It would be called only once for every `LocationPicker` object when it is about to be dismissed.\n\n```swift\noverride func locationDidPick(locationItem: LocationItem) {\n    // Do something with the location the user picked.\n}\n```\n\n##### Location Selection\n\nThis method is used to get user's every location selection. It would be called every time user chooses a location in the list or drag the map view.\n\n__Note__: If you override these methods, the corresponding closure and delegate method won't be executed.\n\n```swift\noverride func locationDidSelect(locationItem: LocationItem) {\n    // Do something with user's every selection.\n}\n```\n\n##### Location Deletion\n\nIf `alternativeLocations` is not empty and `alternativeLocationEditable` is set to `true`, this method will be called when user delete a location item in the table view.\n\n```swift\noverride func alternativeLocationDidDelete(locationItem: LocationItem) {\n    // Delete the location.\n}\n```\n\n##### Permission Denied Handler\n\nBy default, when user request current location but denied the app's location access, `LocationPicker` will present an alert controller that links to the Settings. You can change the text in the alert controller by calling `func setLocationDeniedAlertControllerTitle`. If you need to do something other than presenting an alert controller, you can set this method.\n\n```swift\noverride func locationDidDeny(locationPicker: LocationPicker) {\n    // Ask user to grant location access of this app.\n}\n```\n\n## Location Item\n\n`LocationItem` is a encapsulation class of `MKMapItem` to save you from importing `MapKit` everywhere in your project. To make it more convenient to use, it equips with several computing properties to access the `MKMapItem`.\n\n### Storage\n\n`LocationItem` is conformed to `NSCoding`, which means `LocationItem` object can be encoded to `NSData` object and decoded back.\n\n```swift\nlet locationData = NSKeyedArchiver.archivedDataWithRootObject(locationItem)\nlet locationItem = NSKeyedUnarchiver.unarchiveObjectWithData(locationData) as! LocationItem\n```\n\n### Equatable\n\nThe hash value of `LocationItem` is `\"\\(coordinate.latitude), \\(coordinate.longitude)\".hashValue`, so objects that have the same latitude and longitude are equal.\n\n### Properties\n\n| Property name | Type | Target | Remark |\n| ------------- |:----:| ------ | ------ |\n| name | String | mapItem.name | The name of the location |\n| coordinate | (latitude: Double, longitude: Double)? | mapItem.placemark.coordinate | The coordinate of the location and converted to tuple. If the user is offline or there is no search result and the `allowArbitraryLocation` property of `LocationPicker` is set to `true`, this property will be `nil` |\n| addressDictionary | [NSObject: AnyObject]? | mapItem.placemark.addressDictionary | The address dictionary of the location |\n| formattedAddressString | String? | addressDictionary?[\"FormattedAddressLines\"] | The address text formatted according to user's region |\n\nIf you want to access other properties of `MKMapItem` object, just call `locationItem.mapItem`.\n\n### Initialization\n\n##### `init(mapItem: MKMapItem)`\n\nSince `LocationItem` is just the encapsulation of `MKMapItem`, of course you can create a `LocationItem` with a `MKMapItem` object.\n\n##### `init(coordinate: (latitude: Double, longitude: Double), addressDictionary: [String: AnyObject])`\n\nYou can also initialize with the coordinate and address dictionary.\n\nIf you don't want to store `LocationItem` objects as `NSData`, you can just store the coordinate and address dictionary, and use this method to initialize.\n\n#### `init(locationName: String)`\n\nA location can be created with only a name. In this case, the value of property `coordinate` would be `nil`.\n\n## Change Log\n\n[CHANGELOG.md](https://github.com/JeromeTan1997/LocationPicker/blob/master/CHANGELOG.md)\n\n## Contribute\n\n* If you encounter any bugs or other problems, please create issues or pull requests.\n* If you want to add more features to `LocationPicker`, you are more than welcome to create pull requests.\n* If you are good at English, please correct my English.\n* If you like the project, please star it and share with others.\n* If you have used LocationPicker in your App, please tell me by creating an issue.\n\n## License\n\nThe MIT License (MIT)\n\nCopyright (c) 2016 Jerome Tan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FZhuoranTan%2FLocationPicker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FZhuoranTan%2FLocationPicker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FZhuoranTan%2FLocationPicker/lists"}