Autocomplete plugin for react-amap
npm install react-amap-plugin-autocompleteUsage:
```
npm install react-amap-plugin-autocomplete
Configurable props:
Visit AMap doc for details about ALL prop;
`
import { Map } from 'react-amap';
import Autocomplete from 'react-amap-plugin-autocomplete';
const pluginProps = {
input: // optional
...
}
// inner input element style
const style = {
...
}
// on select item
selectfunc = (e) => {
if(e.poi.location) {
this.setState({center:{longitude: e.poi.location.lng, latitude: e.poi.location.lat}})
}
}
// render
``