2.0.1 • Published 4 years ago

react-leaflet-google-traffic v2.0.1

Weekly downloads
19
License
MIT
Repository
github
Last release
4 years ago

react-leaflet-google npm version

GoogleMaps layer as React component for Leaflet build on top of React-Leaflet.

The google maps layer is using the plugin from Leaflet.GridLayer.GoogleMutant

Also it uses google-maps, a wrapper for asynchronously download Google Maps API in the browser.

Example

supported versions

  • "react-leaflet": "^1.0.1"
  • "leaflet": "^1.0.3"
  • "react": "^15.5.0"

Getting started

import { Map, TileLayer, LayersControl } from 'react-leaflet'
import {GoogleLayer} from '../src'
const { BaseLayer } = LayersControl;
const key = 'Your Key goes here';
const terrain = 'TERRAIN';
const road = 'ROADMAP';


....

  <BaseLayer checked name='Google Maps Roads'>
     <GoogleLayer googlekey={key}  maptype={road}/>
  </BaseLayer>
  <BaseLayer  name='Google Maps Terrain'>
     <GoogleLayer googlekey={key}  maptype={terrain} />
  </BaseLayer>

For more details on how to use this plugin check the example.

2.0.1

4 years ago

5.1.3

4 years ago

1.0.1

5 years ago

1.0.0

5 years ago