react-leaflet-google-mod

4.0.1 • Public • Published

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.9.1"
  • "leaflet": "^1.3.0""
  • "react": "^15.0.0 || ^16.0.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.

Dependencies (0)

    Dev Dependencies (18)

    Package Sidebar

    Install

    npm i react-leaflet-google-mod

    Weekly Downloads

    0

    Version

    4.0.1

    License

    MIT

    Unpacked Size

    7.59 MB

    Total Files

    38

    Last publish

    Collaborators

    • bchelkow