UNPKG

react-hook-google-maps

Version:
57 lines (39 loc) 2.05 kB
# react-hook-google-maps > React useGoogleMaps hook [![license](https://img.shields.io/github/license/jmarceli/react-hook-google-maps.svg)](https://opensource.org/licenses/MIT) [![version](https://img.shields.io/npm/v/react-hook-google-maps.svg)](https://www.npmjs.com/package/react-hook-google-maps) [![dependencies status](https://img.shields.io/david/jmarceli/react-hook-google-maps.svg)](https://david-dm.org/jmarceli/react-hook-google-maps) [![CI build](https://img.shields.io/circleci/project/github/jmarceli/react-hook-google-maps/master.svg)](https://circleci.com/gh/jmarceli/react-hook-google-maps) [![code coverage](https://img.shields.io/codecov/c/github/jmarceli/react-hook-google-maps.svg)](https://codecov.io/gh/jmarceli/react-hook-google-maps) Easiest way to use Google Maps in your React application. For Google API documentation please check https://developers.google.com/maps/documentation/javascript/reference ## Install ```bash npm install --save react-hook-google-maps ``` ## Usage ```jsx import * as React from "react"; import { useGoogleMaps } from "react-hook-google-maps"; const App = () => { const { ref, map, google } = useGoogleMaps( // Use your own API key, you can get one from Google (https://console.cloud.google.com/google/maps-apis/overview) "AIzaSyC4Z5Qz97EWcoCczNn2IcYvaYG0L9pe6Rk", // NOTE: even if you change options later { center: { lat: 0, lng: 0 }, zoom: 3, }, ); console.log(map); // instance of created Map object (https://developers.google.com/maps/documentation/javascript/reference/map) console.log(google); // google API object (easily get google.maps.LatLng or google.maps.Marker or any other Google Maps class) return <div ref={ref} style={{ width: 400, height: 300 }} />; }; export default App; ``` ## Example [![Edit priceless-shaw-o6e7x](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/priceless-shaw-o6e7x?fontsize=14&hidenavigation=1&theme=dark) ## License [MIT](./LICENSE) ## Author Jan Grzegorowski