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

1
10

4.5.0

Diff

Changelog

Source

4.5.0 (2015-11-21)

Features

  • async/ScriptjsLoader: replacement of async/ScriptjsGoogleMap (ccfadd4), closes #145

BREAKING CHANGES

  • async/ScriptjsLoader: migrate from async/ScriptjsGoogleMap to async/ScriptjsLoader and changed its behavior from implicit inheritance to simple delegation

To migrate the code follow the example below (extracted from examples/gh-pages migration):

Before:

<ScriptjsLoader
  hostname={"maps.googleapis.com"}
  pathname={"/maps/api/js"}
  query={{v: `3.exp`, libraries: "geometry,drawing,places"}}
  //
  // <GoogleMap> props
  defaultZoom={3}
  defaultCenter={{lat: -25.363882, lng: 131.044922}}
  onClick={::this._handle_map_click}
/>

After:

<ScriptjsLoader
  hostname={"maps.googleapis.com"}
  pathname={"/maps/api/js"}
  query={{v: `3.exp`, libraries: "geometry,drawing,places"}}
  //
  googleMapElement={
    <GoogleMap
      defaultZoom={3}
      defaultCenter={{lat: -25.363882, lng: 131.044922}}
      onClick={::this._handle_map_click}
    />
  }
/>

<a name="4.4.1"></a>

tomchentw
published 4.4.1 •

Changelog

Source

4.4.1 (2015-11-19)

Bug Fixes

<a name="4.4.0"></a>

tomchentw
published 4.4.0 •

Changelog

Source

4.4.0 (2015-11-19)

Features

  • MarkerClusterer: Support for MarkerClusterPlus API (d56551c), closes #146

<a name="4.3.3"></a>

tomchentw
published 4.3.3 •

Changelog

Source

4.3.3 (2015-11-18)

Bug Fixes

  • OverlayView: redraw only when props.mapPaneName changes (ff4473d), closes #147 #148

<a name="4.3.2"></a>

tomchentw
published 4.3.2 •

Changelog

Source

4.3.2 (2015-11-17)

Bug Fixes

  • async/ScriptjsGoogleMap: switch to _.isEqual for key comparasion (0a1df35), closes #143

<a name="4.3.1"></a>

tomchentw
published 4.3.1 •

Changelog

Source

4.3.1 (2015-11-16)

Bug Fixes

  • package.json: scriptjs should exist in dependencies (4f3304c)

<a name="4.3.0"></a>

tomchentw
published 4.2.1 •

Changelog

Source

4.2.1 (2015-11-16)

Bug Fixes

  • OverlayView: switch to ReactDOM (51fe680), closes #140
  • OverlayView: use ReactDOM for unmountComponentAtNode (735eba0), closes #137

<a name="4.2.0"></a>

tomchentw
published 4.2.0 •

Changelog

Source

4.2.0 (2015-10-15)

Bug Fixes

  • src: replace fbjs dependencies with can-use-dom (43250b3), closes #134

<a name="4.1.1"></a>

tomchentw
published 4.1.1 •

Changelog

Source

4.1.1 (2015-10-14)

Bug Fixes

  • src: switch to findDOMNode from "react-dom" (593b1c8), closes #132

<a name="4.1.0"></a>

tomchentw
published 4.1.0 •

Changelog

Source

4.1.0 (2015-10-13)

Features

  • src: move instance creation in componentWillMount (91d5790)
  • src: update composeOptions to accept controlledPropTypes for _2 (03aee4d)

<a name="4.0.0"></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