react-native-bpk-component-map

Backpack React Native map component.

Usage no npm install needed!

<script type="module">
  import reactNativeBpkComponentMap from 'https://cdn.skypack.dev/react-native-bpk-component-map';
</script>

README

react-native-bpk-component-map

Backpack React Native map component.

Installation

npm install react-native-bpk-component-map --save-dev

This package depends on react-native-maps and its native components need to be integrated manually by following their instructions.

Usage

react-native-bpk-component-map is a thin wrapper around react-native-maps. It exports all the same components and values as react-native-maps so you should read their documentation.

import React from 'react';
import BpkMapView from 'react-native-bpk-component-map';


export default class App extends Component {
  render() {
    return (
      <BpkMapView
        style={{ flex: 1 }}
        initialRegion={{
          latitude: 37.78825,
          longitude: -122.4324,
          latitudeDelta: 0.0922,
          longitudeDelta: 0.0421,
        }}
      />
    );
  }
}