Nicolas Bastos
Results
2
comments of
Nicolas Bastos
For anyone who still cares, I edited the component by adding another "position" prop with my dynamic coordinates. Then inside the render but not the return statement of the component,...
I changed the render method and prop types of the component like this: ``` render() { if (this.streetView) { this.streetView.setPosition(this.props.position); } return ( ); } } ReactStreetview.propTypes = { apiKey:...