react-native-web-maps
React Native for Web implementation of react-native-maps
Last updated 7 years ago by minishlink .
MIT · Repository · Original npm · Tarball · package.json
$ cnpm install react-native-web-maps 
SYNC missed versions from official npm registry.

react-native-web-maps

React Native for Web implementation of react-native-maps

Getting started

$ npm install react-native-web-maps --save

To implement react-native-web-maps we're using the react-google-maps package:

$ npm install react-google-maps --save

Alias the package in your webpack config:

resolve: {
    alias: {
        'react-native': 'react-native-web',
        ...
        'react-native-maps': 'react-native-web-maps',
    }
}

You need to have a Google Maps Javascript API key to use the map, you can get one here.

Then, you should add this script to your index.html:

<script src="https://maps.googleapis.com/maps/api/js?key=<YOUR_GOOGLE_API_KEY>"></script>

Usage

import MapView from 'react-native-maps';

See the original documentation.

The supported components are:

  • MapView
  • MapView.Marker
  • MapView.Polyline

MapView:

  • The officially supported props are:
    • region
  • The officially supported events are:
    • onRegionChange
    • onRegionChangeComplete
    • onPress

MapView.Marker:

  • The officially supported props are:
    • title
    • description
    • coordinate

Examples

See the storybook.

Contributing

PRs are welcome!

Current Tags

  • 0.3.0                                ...           latest (6 years ago)

3 Versions

  • 0.3.0                                ...           6 years ago
  • 0.2.0                                ...           7 years ago
  • 0.1.0                                ...           8 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 2
Last Day 0
Last Week 2
Last Month 1
Dependencies (1)
Dev Dependencies (11)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |