@dc0de/react-google-maps
v0.0.8
Published
Google Maps integration with React
Downloads
1
Readme
Google Maps integration with React.
Fully declarative render-style components built with latest React features. Checkout documentation with examples.
Installation
# With yarn
yarn add @dc0de/react-google-maps
# Or with npm
npm install @dc0de/react-google-maps
Touch Events not working?
if (window.navigator) {
/**
* Make mouse work with google maps in Windows touch devices.
*
* @link http://stackoverflow.com/a/37611736/1709679
*/
window.navigator.msPointerEnabled = true;
/**
* Make touch/pan/zoom work with google maps work in Windows touch devices.
*
* @link https://code.google.com/p/gmaps-api-issues/issues/detail?id=6425
*/
window.navigator.msMaxTouchPoints = window.navigator.msMaxTouchPoints || 2;
}