npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

rn-mapbox-autocomplete

v1.2.3

Published

A powerful and customizable Mapbox Places autocomplete component for React Native applications

Readme

rn-mapbox-autocomplete

A powerful and customizable Mapbox Places autocomplete component for React Native applications.

Features

  • 🔍 Real-time place search using Mapbox Geocoding API
  • 🎨 Fully customizable styling
  • 🔧 Custom input component support
  • 🌍 Multi-language support
  • 📱 Cross-platform (iOS & Android)
  • ⚡ TypeScript support
  • 🎯 Configurable search types (country, region, place, etc.)
  • 📍 Optional location icons
  • 🏷️ "Powered by Mapbox" attribution

Installation

npm install rn-mapbox-autocomplete

Or with Yarn:

yarn add rn-mapbox-autocomplete

Prerequisites

You'll need a Mapbox access token. Get one for free at Mapbox.

Basic Usage

import React from 'react';
import { View, Alert } from 'react-native';
import MapboxAutocomplete, { MapboxFeature } from 'rn-mapbox-autocomplete';

export default function App() {
  const handleLocationSelect = (location: MapboxFeature) => {
    Alert.alert(
      'Location Selected',
      `${location.place_name}\nLat: ${location.center[1]}\nLng: ${location.center[0]}`
    );
  };

  return (
    <View style={{ flex: 1, padding: 20 }}>
      <MapboxAutocomplete
        accessToken="YOUR_MAPBOX_ACCESS_TOKEN"
        placeholder="Search for places..."
        onLocationSelect={handleLocationSelect}
      />
    </View>
  );
}

Advanced Usage

import React from 'react';
import { View, StyleSheet } from 'react-native';
import MapboxAutocomplete, { MapboxFeature } from 'rn-mapbox-autocomplete';

export default function App() {
  const handleLocationSelect = (location: MapboxFeature) => {
    console.log('Selected:', location);
  };

  const handleSearchChange = (query: string) => {
    console.log('Searching:', query);
  };

  return (
    <View style={styles.container}>
      <MapboxAutocomplete
        accessToken="YOUR_MAPBOX_ACCESS_TOKEN"
        placeholder="Buscar ubicación..."
        language="es"
        types={['country', 'region', 'place']}
        limit={8}
        country="CL" // Filter results to Chile only
        debounceDelay={500} // Wait 500ms after user stops typing
        maxHeight={250}
        showLocationIcon={true}
        showPoweredBy={true}
        onLocationSelect={handleLocationSelect}
        onSearchChange={handleSearchChange}
        inputStyle={styles.input}
        resultsContainerStyle={styles.results}
        resultItemStyle={styles.resultItem}
        resultItemTextStyle={styles.resultItemText}
        loadingText="Searching for locations..."
        loadingContainerStyle={styles.loadingContainer}
        loadingTextStyle={styles.loadingText}
        poweredByContainerStyle={styles.poweredByContainer}
        poweredByRowStyle={styles.poweredByRow}
        poweredByTextStyle={styles.poweredByText}
        poweredByBoldTextStyle={styles.poweredByBold}
        mapboxLogoStyle={styles.mapboxLogo}
      />
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    padding: 20,
    backgroundColor: '#f5f5f5',
  },
  input: {
    backgroundColor: '#fff',
    borderColor: '#2196f3',
    borderWidth: 2,
    borderRadius: 10,
    fontSize: 16,
  },
  results: {
    backgroundColor: '#fff',
    borderColor: '#2196f3',
    borderRadius: 10,
  },
  resultItem: {
    paddingVertical: 15,
  },
  resultItemText: {
    fontSize: 15,
    color: '#333',
  },
  loadingContainer: {
    padding: 20,
  },
  loadingText: {
    color: '#2196f3',
  },
  poweredByContainer: {
    padding: 10,
  },
  poweredByRow: {
    flexDirection: 'row',
  },
  poweredByText: {
    fontSize: 12,
  },
  poweredByBold: {
    fontWeight: 'bold',
  },
  mapboxLogo: {
    width: 18,
    height: 18,
  },
});

Custom Input Component

You can provide your own custom input component for maximum flexibility:

import React from 'react';
import { View, TextInput, StyleSheet } from 'react-native';
import MapboxAutocomplete, { CustomInputProps } from 'rn-mapbox-autocomplete';

export default function App() {
  const CustomSearchInput = ({ value, onChangeText, placeholder }: CustomInputProps) => (
    <TextInput
      style={styles.customInput}
      value={value}
      onChangeText={onChangeText}
      placeholder={placeholder}
      autoCapitalize="none"
      autoCorrect={false}
    />
  );

  return (
    <View style={styles.container}>
      <MapboxAutocomplete
        accessToken="YOUR_MAPBOX_ACCESS_TOKEN"
        placeholder="Enter location..."
        customInput={CustomSearchInput}
        onLocationSelect={(location) => {
          console.log('Selected:', location.place_name);
        }}
      />
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    padding: 20,
  },
  customInput: {
    height: 50,
    borderColor: '#ff9800',
    borderWidth: 2,
    borderRadius: 25,
    paddingHorizontal: 20,
    fontSize: 16,
    backgroundColor: '#fff3e0',
  },
});

React Native Paper Integration or Others input libreries

You can easily integrate with React Native Paper components or Others input libreries for a Material Design look:

import React from 'react';
import { View, StyleSheet } from 'react-native';
import { PaperProvider, TextInput as TextInputPaper } from 'react-native-paper';
import MapboxAutocomplete, { CustomInputProps } from 'rn-mapbox-autocomplete';

export default function App() {
  return (
    <PaperProvider>
      <View style={styles.container}>
        <MapboxAutocomplete
          accessToken="YOUR_MAPBOX_ACCESS_TOKEN"
          placeholder="Search location..."
          customInput={({ value, onChangeText, placeholder }: CustomInputProps) => (
            <TextInputPaper
              mode="outlined"
              label="Search Location"
              value={value}
              onChangeText={onChangeText}
              placeholder={placeholder}
              autoCapitalize="none"
              autoCorrect={false}
              style={styles.paperInput}
            />
          )}
          onLocationSelect={(location) => {
            console.log('Selected:', location.place_name);
          }}
          resultsContainerStyle={styles.resultsContainer}
          maxHeight={200}
        />
      </View>
    </PaperProvider>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    padding: 20,
  },
  paperInput: {
    backgroundColor: 'white',
  },
  resultsContainer: {
    marginTop: 5,
  },
});

Important Notes for React Native Paper

  1. PaperProvider Required: Always wrap your app with PaperProvider for proper theming
  2. Background Color: Set backgroundColor: 'white' on the TextInput for proper outline visibility
  3. Results Container Margin: Add marginTop to resultsContainerStyle for proper spacing with outlined inputs

API Reference

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | accessToken | string | Required | Your Mapbox access token | | placeholder | string | "Search place" | Input placeholder text | | language | string | "en" | Search language (ISO 639-1) | | types | string[] | ["country", "region", "place"] | Place types to search | | limit | number | 5 | Maximum number of results | | country | string | undefined | Filter results to specific country (ISO 3166-1 alpha-2 code, e.g., "CL", "US") | | debounceDelay | number | 500 | Delay in milliseconds before search request (optimizes API calls) | | maxHeight | number | 300 | Maximum height of results container | | showLocationIcon | boolean | true | Show location icon in results | | showPoweredBy | boolean | true | Show "Powered by Mapbox" attribution | | loadingText | string | "Searching..." | Custom text to display while searching | | customInput | (props: CustomInputProps) => ReactElement | undefined | Custom input component renderer | | onLocationSelect | (location: MapboxFeature) => void | undefined | Callback when location is selected | | onSearchChange | (query: string) => void | undefined | Callback when search query changes |

Styling Props

| Prop | Type | Description | |------|------|-------------| | style | ViewStyle | Container style | | inputStyle | TextStyle | Input field style | | resultsContainerStyle | ViewStyle | Results container style | | resultItemStyle | ViewStyle | Individual result item style | | locationIconSource | ImageSourcePropType | Custom location icon | | locationIconStyle | ImageStyle | Location icon style | | loadingContainerStyle | ViewStyle | Style for the loading container | | loadingTextStyle | TextStyle | Style for the loading text | | poweredByContainerStyle | ViewStyle | Style for the "Powered by Mapbox" container | | poweredByRowStyle | ViewStyle | Style for the "Powered by Mapbox" row | | poweredByTextStyle | TextStyle | Style for the "Powered by" text | | poweredByBoldTextStyle | TextStyle | Style for the "Mapbox" bold text | | mapboxLogoStyle | ImageStyle | Style for the Mapbox logo | | resultItemTextStyle | TextStyle | Style for the "result Item by" text |

Types

interface MapboxFeature {
  id: string;
  place_name: string;
  center: [number, number]; // [longitude, latitude]
  context?: Array<{ id: string; text: string }>;
  properties?: {
    category?: string;
  };
}

interface CustomInputProps {
  value: string;
  onChangeText: (text: string) => void;
  placeholder?: string;
}

Available Place Types

  • country - Countries
  • region - States, provinces, territories
  • postcode - Postal codes
  • district - Districts, boroughs
  • place - Cities, towns, villages
  • locality - Neighborhoods, suburbs
  • neighborhood - Local neighborhoods
  • address - Street addresses
  • poi - Points of interest

Country-Specific Search

You can filter search results to a specific country using the country prop with ISO 3166-1 alpha-2 country codes. This is particularly useful for searching specific addresses with street numbers:

import React from 'react';
import { View } from 'react-native';
import MapboxAutocomplete from 'rn-mapbox-autocomplete';

export default function ChileAddressSearch() {
  return (
    <View style={{ flex: 1, padding: 20 }}>
      <MapboxAutocomplete
        accessToken="YOUR_MAPBOX_ACCESS_TOKEN"
        placeholder="Buscar dirección en Chile..."
        language="es"
        country="CL" // Search only in Chile
        types={['address']} // Get specific addresses with street numbers
        onLocationSelect={(location) => {
          console.log('Address:', location.place_name);
          console.log('Coordinates:', location.center);
        }}
      />
    </View>
  );
}

Common Country Codes

  • CL - Chile
  • AR - Argentina
  • MX - Mexico
  • US - United States
  • ES - Spain
  • BR - Brazil
  • CO - Colombia
  • PE - Peru

Example: Address Search with Street Numbers

// Search for addresses in Chile with street numbers
<MapboxAutocomplete
  accessToken="YOUR_MAPBOX_ACCESS_TOKEN"
  country="CL"
  types={['address']}
  placeholder="Ej: Avenida Venus 123"
  language="es"
  onLocationSelect={(location) => {
    // Will return specific addresses like:
    // "Avenida Venus 123, Providencia, Santiago"
    console.log(location.place_name);
  }}
/>

Search Optimization (Debouncing)

The component includes built-in debouncing to reduce API calls. You can customize the delay using the debounceDelay prop:

// Fast response (more API calls)
<MapboxAutocomplete
  accessToken="YOUR_MAPBOX_ACCESS_TOKEN"
  debounceDelay={200}
/>

// Default (balanced)
<MapboxAutocomplete
  accessToken="YOUR_MAPBOX_ACCESS_TOKEN"
  debounceDelay={500} // or omit for default
/>

// Slower response (fewer API calls)
<MapboxAutocomplete
  accessToken="YOUR_MAPBOX_ACCESS_TOKEN"
  debounceDelay={1000}
/>

// No debounce (not recommended - many API calls)
<MapboxAutocomplete
  accessToken="YOUR_MAPBOX_ACCESS_TOKEN"
  debounceDelay={0}
/>

Recommended values:

  • 200-300ms - Fast and responsive, good for most use cases
  • 500ms - Default, balanced between UX and API optimization
  • 1000ms+ - Slower, but significantly reduces API calls (consider for high-traffic apps)

Utility Functions

You can also use the search function directly:

import { searchMapboxPlaces } from 'rn-mapbox-autocomplete';

const searchPlaces = async () => {
  const results = await searchMapboxPlaces(
    'New York',           // query
    'YOUR_ACCESS_TOKEN',  // accessToken
    'en',                 // language
    ['place'],            // types
    5,                    // limit
    'US'                  // country (optional)
  );
  console.log(results);
};

// Example: Search for addresses in Chile
const searchChileAddresses = async () => {
  const results = await searchMapboxPlaces(
    'Avenida Venus',
    'YOUR_ACCESS_TOKEN',
    'es',
    ['address'],
    10,
    'CL'
  );
  console.log(results);
};

Example Project

Check out the example project in the example folder for a complete implementation.

To run the example:

cd example
npm install
# For iOS
npx react-native run-ios
# For Android
npx react-native run-android

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with ❤️ and create-react-native-library