Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-google-maps

Package Overview
Dependencies
Maintainers
1
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-google-maps - npm Package Versions

13
10

9.2.0

Diff

Changelog

Source

9.2.0 (2017-10-26)

Features

  • places/SearchBox: allow other elements around SearchBox input (238a352)

<a name="9.1.0"></a>

tomchentw
published 9.1.0 •

Changelog

Source

9.1.0 (2017-10-26)

Features

  • package.json: support react@^16.0.0 (963716d), closes #677 #640
  • package.json: upgrade to recompose@^0.26.0 (ebb9be8)
  • places/SearchBox: support react@^16.0.0 (94931ae), closes #640 #656

<a name="9.0.3"></a>

tomchentw
published 9.0.3 •

Changelog

Source

9.0.3 (2017-10-26)

Bug Fixes

  • MarkerClusterer: correct native doc link (f36efa6)

<a name="9.0.2"></a>

tomchentw
published 9.0.2 •

Changelog

Source

9.0.2 (2017-10-23)

<a name="9.0.1"></a>

tomchentw
published 9.0.1 •

Changelog

Source

9.0.1 (2017-10-17)

Bug Fixes

  • GroundOveray: use defaultUrl and defaultBounds instead (349b620)

<a name="9.0.0"></a>

tomchentw
published 9.0.0 •

Changelog

Source

9.0.0 (2017-10-16)

Bug Fixes

  • Marker: remove buggy MarkerWithLabel support (b3985f4)

Features

  • addons/MarkerWithLabel: separate from Marker (3f7670f), closes #595 #604
  • package.json: add markerwithlabel to dependencies (b4fe224)

BREAKING CHANGES

  • Marker: MarkerWithLabel comes with its own React Component now

Before:

import { Marker } from "react-google-maps";

<Marker
  position={{ lat: -34.397, lng: 150.644 }}
  labelAnchor={new google.maps.Point(0, 0)}
  labelContent="<div>Hello There!</div>"
  labelStyle={{/* WON'T WORK */}}
/>

After:

import MarkerWithLabel from "react-google-maps/lib/components/addons/MarkerWithLabel";

<MarkerWithLabel
  position={{ lat: -34.397, lng: 150.644 }}
  labelAnchor={new google.maps.Point(0, 0)}
  labelStyle={{backgroundColor: "yellow", fontSize: "32px", padding: "16px"}}
>
  <div>Hello There!</div>
</MarkerWithLabel>

<a name="8.5.0"></a>

tomchentw
published 8.5.0 •

Changelog

Source

8.5.0 (2017-10-12)

Features

  • GoogleMap: Add defaultExtraMapTypes (6ee4734)

<a name="8.4.2"></a>

tomchentw
published 8.4.2 •

Changelog

Source

8.4.2 (2017-10-11)

Bug Fixes

  • withGoogleMap: make compatible with recompose@^0.26 (450e1a8), closes #659
  • withScriptjs: make compatible with recompose@^0.26 (20f91af), closes #659

<a name="8.4.1"></a>

tomchentw
published 8.4.1 •

Changelog

Source

8.4.1 (2017-10-11)

Bug Fixes

<a name="8.4.0"></a>

tomchentw
published 8.4.0 •

Changelog

Source

8.4.0 (2017-10-10)

Features

  • BicyclingLayer: Add new component for Google Maps BicyclingLayer (26ce879)

<a name="8.3.5"></a>

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc