
Security News
Cline CLI npm Package Compromised via Suspected Cache Poisoning Attack
A compromised npm publish token was used to push a malicious postinstall script in cline@2.3.0, affecting the popular AI coding agent CLI with 90k weekly downloads.
react-native-place-picker
Advanced tools
This plugin is built only by create native page
UIViewControllerfor iOS orActivityfor Android. and present the page in front of React Native Application without any special dependencies just native code
npm install react-native-place-picker
# or
yarn add react-native-place-picker
# or
pnpm add react-native-place-picker
# or
bun add react-native-place-picker
expo-dev-client and run expo run:ios or expo run:androidInfo Expo managed app not supported 🚧
Info.plist<key>NSLocationWhenInUseUsageDescription</key>
<string>YOUR_PURPOSE_HERE</string>
AndroidManifest.xml you Google Map API Key or your application will crash<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="YOUR_KEY" />
import { pickPlace } from "react-native-place-picker";
pickPlace({
enableUserLocation: true,
enableGeocoding: true,
color: "#FF00FF",
//...etc
})
.then(console.log)
.catch(console.log);
// or
pickPlace().then(console.log).catch(console.log);
{
/**
* @description Selected coordinate.
*/
coordinate: PlacePickerCoordinate;
/**
* @description Geocoded address for selected location.
* @if `enableGeocoding: true`
*/
address?: PlacePickerAddress;
/**
* @description Did cancel the place picker window without selecting.
*/
didCancel: boolean;
}
| Property | Type | Description | Default |
|---|---|---|---|
presentationStyle | PlacePickerPresentationStyle | string | Presentation style of the place picker window. iOS only | 'fullscreen' |
title | string | The title of the place picker window. | 'Choose Place' |
searchPlaceholder | string | Placeholder for the search bar in the place picker window. | 'Search...' |
color | string | Primary color of the theme (map pin, shadow, etc.). | '#FF0000' |
contrastColor | string | Contrast color for the primary color. | '#FFFFFF' |
locale | string | Locale for the returned address. | 'en-US' |
initialCoordinates | PlacePickerCoordinate | Initial map position. | { latitude: 25.2048, longitude: 55.2708 } |
enableGeocoding | boolean | geocoding for the selected address. | true |
enableSearch | boolean | search bar for searching specific positions. | true |
enableUserLocation | boolean | current user position button. Requires setup. | true |
enableLargeTitle | boolean | large navigation bar title of the UIViewController. iOS only | true |
rejectOnCancel | boolean | Reject and return nothing if the user dismisses the window without selecting a place. | true |
| Enum Value | Description |
|---|---|
modal | Presentation style as a modal window. |
fullscreen | Presentation style in fullscreen mode. |
| Property | Type | Description |
|---|---|---|
name | string | Name of the location. |
streetName | string | Street name of the address. |
city | string | City of the address. |
state | string | State of the address. |
zipCode | string | Zip code of the address. |
country | string | Country of the address. |
| Property | Type | Description |
|---|---|---|
latitude | number | Latitude of the location. |
longitude | number | Longitude of the location. |
| Property | Type | Description |
|---|---|---|
coordinate | PlacePickerCoordinate | Selected coordinate. |
address | PlacePickerAddress | Geocoded address for selected location (if enableGeocoding). |
didCancel | boolean | Indicates if the place picker was canceled without selecting. |
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
FAQs
Pick place with single click
The npm package react-native-place-picker receives a total of 131 weekly downloads. As such, react-native-place-picker popularity was classified as not popular.
We found that react-native-place-picker demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
A compromised npm publish token was used to push a malicious postinstall script in cline@2.3.0, affecting the popular AI coding agent CLI with 90k weekly downloads.

Product
Socket is now scanning AI agent skills across multiple languages and ecosystems, detecting malicious behavior before developers install, starting with skills.sh's 60,000+ skills.

Product
Socket now supports PHP with full Composer and Packagist integration, enabling developers to search packages, generate SBOMs, and protect their PHP dependencies from supply chain threats.