# @lynkedup/map-sdk A small TypeScript wrapper around `react-native-maps` to provide a consistent API and typed components. ## Usage Install peer deps in your app: ``` npm install react-native react-native-maps # and add this package via workspace or npm/yarn ``` Basic usage: ```ts import React from 'react'; import { MapView, Marker } from '@lynkedup/map-sdk'; export default function App() { return ( ); } ``` ## Notes - This package delegates to `react-native-maps` for platform implementations. Follow `react-native-maps` docs for iOS/Android setup (Google Maps API key, pods, manifest permissions).