Socket
Socket
Sign inDemoInstall

react-geoloc

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-geoloc

React Geolocation with Hooks


Version published
Weekly downloads
58
increased by45%
Maintainers
1
Weekly downloads
 
Created
Source

react-geoloc

React Geolocation with Hooks

NPM Build Status

Note: This is using the new React Hooks API Proposal which is subject to change until React 16.7 final they are officially released.

You'll need to install react, react-dom, etc at @next (until hooks are officially released).

Install

npm install --save react-geoloc

Usage

import LocationProvider, { useLocationContext } from "react-geoloc";

export default class App extends Component {
  render() {
    return (
      <div>
        <LocationProvider lazy={true} watch={false}>
          <Test />
        </LocationProvider>
      </div>
    );
  }
}

function Test() {
  const {
    error,
    isFetching,
    isWatching,
    position,
    fetchLocation,
    watchLocation,
    stopWatching
  } = useLocationContext();
  // useEffect(() => { fetchLocation()}, []); // note: use lazy={false} instead
  const { latitude, longitude, altitude } = position && (position.coords || {});
  return (
    <div>
      <pre>latitude: {latitude}</pre>
      <hr />
      <pre>longitude: {longitude}</pre>
      <hr />
      <pre>altitude: {altitude}</pre>
      <hr />
      <pre>isFetching: {JSON.stringify(isFetching)}</pre>
      <hr />
      <pre>isWatching: {JSON.stringify(isWatching)}</pre>
      <hr />
      <pre>{JSON.stringify(error)}</pre>
      <hr />
      <button onClick={fetchLocation}>Find me!</button>
      <button onClick={watchLocation}>watch my location!</button>
      <button onClick={stopWatching} disabled={!isWatching}>
        Stop watching
      </button>
    </div>
  );
}

Props

  • lazy: Boolean. true to immediately retrieve the geolocation. default: true
  • watch: Boolean. true to immediately watch the geolocation. default: false
  • options: PositionOptions. The default PositionOptionsused when calling fetchCurrentLocation or watchLocation

Note: the options prop is used when geolocation functions are called on mount (when lazy is false or watch is true) or when no parameters are provided when explicitly calling fetchLocation or watchLocation (see useLocationContext below)

useLocationContext Attributes

  • error: null | PositionError ({code: number, message: string})
  • isFetching: boolean. Wether or not the position is currently being fetched
  • isWatching: boolean. Wether or not the position is currently being watched
  • position: a Position object
  • fetchLocation: a function that takes an optional PositionOptions. Warning: might not be present.
  • watchLocation: a function that takes an optional PositionOptions and watch the position (which means position context value will be updated regularly)
  • stopWatching: a function that allows to stop watching the location.

License

MIT © saadtazi

FAQs

Package last updated on 03 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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