Добрый день! Подскажите пожалуйста как вывести
searchBox в react google maps?
Уже по всякому пробовал, выдает ошибку - Cannot read property 'SearchBox' of undefined
Использую плагин google-map-react.
Хотя бы куда смотреть подскажите ...
Очень благодарен буду!
Код компонента:
import React, {Component} from 'react';
export default class SearchBox extends Component {
constructor(props) {
super(props);
this.changeInp = this.changeInp.bind(this)
}
changeInp = (e, r) => {
let searchBox = google.maps.places.SearchBox(this.myTextInput);
console.log(searchBox)
console.log(google.maps)
let places = searchBox.getPlaces();
}
render() {
return (
<input id="pac-input" className="controls" onChange={this.changeInp} ref={(ref) => this.myTextInput = ref} type="text"
placeholder="Search Box"/>
)
}
}