/react-native-maps-lite

🚧🚧🚧 Under development 🚧🚧🚧

Primary LanguageJavaMIT LicenseMIT

react-native-maps-lite

Performant and minimal map view for react-native

Installation

npm install react-native-maps-lite

Usage

import { MapsLiteView } from 'react-native-maps-lite';

export default () => {
  return (
    <MapsLiteView
      onMapDidMove={(e) => {
        console.log(e.nativeEvent);
      }}
      onMapWillMove={() => {
        console.log('onMapWillMove');
      }}
      initialRegion={initialRegion}
      showCompass={true}
      showUserLocation={true}
      style={styles.box}
    />
  );
};

Contributing

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

License

MIT