🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@mappedin/react-native-sdk

Package Overview
Dependencies
Maintainers
2
Versions
174
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mappedin/react-native-sdk

## Resources

5.41.10
latest
npm
Version published
Weekly downloads
278
57.95%
Maintainers
2
Weekly downloads
 
Created
Source

Mappedin SDK for React Native

Resources

  • Mappedin Developer Portal
  • Releases and Roadmap
  • Getting Started Guide
  • API Reference
  • Demo Keys & Maps
  • License

Usage

Installation

npm install @mappedin/react-native-sdk react-native-webview

or

yarn add @mappedin/react-native-sdk react-native-webview

Update cocoapods: cd ios && pod install

Getting Started

import React from 'react';
import { SafeAreaView } from 'react-native';
import { MiMapView } from '@mappedin/react-native-sdk';

// See Trial API key Terms and Conditions
// https://developer.mappedin.com/guides/api-keys
const options = {
	clientId: '5eab30aa91b055001a68e996',
	clientSecret: 'RJyRXKcryCMy4erZqqCbuB1NbR66QTGNXVE0x3Pg6oCIlUR1',
	venue: 'mappedin-demo-mall',
};

const App = () => {
	return (
		<SafeAreaView style={{ flex: 1 }}>
			<MiMapView style={{ flex: 1 }} key="mappedin" options={options} />
		</SafeAreaView>
	);
};

export default App;

For full documentation, read our Getting Started guide on the Developer Portal.

FAQs

Package last updated on 29 Apr 2025

Did you know?

Socket

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.

Install

Related posts