Skip to content

charlespalmerbf/react-native-leaflet-js

 
 

Repository files navigation

@charlespalmerbf/react-native-leaflet-js

A LeafletView component using WebView and Leaflet map for React Native applications

Notes: This project is forked from https://github.com/pavel-corsaghin/react-native-leaflet, who no longer maintains his fork.

Installation

Install using npm or yarn like this:

npm install --save @charlespalmerbf/react-native-leaflet-js

or

yarn add @charlespalmerbf/react-native-leaflet-js

Usage

import { LatLng, LeafletView } from '@charlespalmerbf/react-native-leaflet-js';

<LeafletView
    // The rest of your props, see the list below
/>

Props

property required type purpose
loadingIndicator optional React.ReactElement custom component displayed while the map is loading
onError optional function Will receive an error event
onLoadEnd optional function Called when map stops loading
onLoadStart optional function Called when the map starts to load
onMessageReceived required function This function receives messages in the form of a WebviewLeafletMessage object from the map
mapLayers optional MapLayer array An array of map layers
mapMarkers optional MapMarker array An array of map markers
mapShapes optional MapShape[] An array of map shapes
mapCenterPosition optional {lat: [Lat], lng: [Lng]} object The center position of the map. This coordinate will not be accurate if the map has been moved manually. However, calling the map's setMapCenterPosition function will cause the map to revert to this location
ownPositionMarker optional Marker A special marker that has an ID of OWN_POSTION_MARKER_ID
zoom optional number Desired zoom value of the map
doDebug optional boolean A flag for debug message logging

Releases

No releases published

Packages

No packages published

Languages

  • HTML 94.1%
  • TypeScript 2.6%
  • Java 1.4%
  • Objective-C 0.8%
  • JavaScript 0.4%
  • Ruby 0.3%
  • Other 0.4%