Created
February 16, 2019 21:58
-
-
Save uriklar/d330122b9a608827aa180ea0ce39d127 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
componentDidMount = () => { | |
const rectangle = new google.maps.Rectangle({ | |
...this.props.options, | |
map: this.context | |
}) | |
this.setState({ rectangle }, () => { | |
this.registeredEvents = applyUpdatesAndRegisterEvents({ | |
updaterMap, | |
eventMap, | |
prevProps: {}, | |
nextProps: this.props, | |
instance: this.state.rectangle | |
}) | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment