-
Notifications
You must be signed in to change notification settings - Fork 816
Element ref was specified as a string (map) but no owner was set #199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I have this same problem, and I'm unsure what's going on :/ |
I'm having the same issue, @fergatron @vongdarakia have you resolved it yet? |
@fergatron @vongdarakia This package is not compatible with React 16+. I downgraded my React to 15.x.x according to this article and I got past that error. Of course, this may break other package compatibilities depending on your project. In case you are a beginner like me, after making this change to React versions, you need to wipe out node_modules and package-lock.json, then run npm install again. |
I have react ^16.5.2 and I received this error because I didn't install |
@atlasmaxima what does it mean to install in a "client" folder? |
use like this: import React, { Component } from 'react';
import { GoogleApiWrapper, Map as GoogleMap } from 'google-maps-react';
class Map extends Component {
render() {
const style = {
width: '100vw',
height: '100vh'
};
return (
<div style={style}>
<GoogleMap
google={this.props.google}
/>
</div>
);
}
}
const MapWrapper = GoogleApiWrapper({
apiKey: "MY_API_KEY"
})(Map);
class ExportMap extends Component{
render(){
return (<MapWrapper/>)
}
}
export default ExportMap; |
This works for me in development but not in production, minified mode. |
I issued a PR to solve this issue by using callback refs instead of string refs. Feel free to use my branch until it's merged here:
|
Hi, I'm getting an error when I attempt to load the Map component.
Below is my dependency list. I attempted to degrade react to ^15.0.0, but other packages broke.
"dependencies": {
"chart.js": "^2.7.2",
"google-maps-react": "^2.0.0",
"highcharts": "^6.1.0",
"moment": "^2.22.1",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-chartjs-2": "^2.7.0",
"react-dates": "^16.6.1",
"react-dom": "^16.3.2",
"react-highcharts": "^16.0.2",
"react-router-dom": "^4.2.2",
"react-vis": "^1.9.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.8.3",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3"
}
and here's my Map component:
The text was updated successfully, but these errors were encountered: