Open tbiinfotech opened 6 years ago
@tbiinfotech you have to bind the method to the parent scope:
onSuggestionSelect={this._suggestionSelect.bind(this)}
@tbiinfotech you can use arrow function:
_suggestionSelect = (result, lat, lng, text) => {
console.log(result, lat, lng, text)
this.setState({center: [lat,lng]})
}
On Select the auto complete result in list, function is getting called
But here I am getting following error:
Uncaught TypeError: this.setState is not a function