Skip to content

Instantly share code, notes, and snippets.

@johnymontana
Created June 11, 2018 18:08
Show Gist options
  • Save johnymontana/1470305f218529b9cf9de556897e653f to your computer and use it in GitHub Desktop.
Save johnymontana/1470305f218529b9cf9de556897e653f to your computer and use it in GitHub Desktop.
// defined in App.js, this function is passed to the
// Map component as a prop
mapSearchPointChange = viewport => {
this.setState({
mapCenter: {
...this.state.mapCenter,
latitude: viewport.latitude,
longitude: viewport.longitude,
zoom: viewport.zoom
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment