Geo input for react.
npm install -S @jswork/react-ant-geo-input
Name | Type | Required | Default | Description |
---|---|---|---|---|
className | string | false | - | The extended className for component. |
appKey | string | false | '5Q5BZ-5EVWJ-SN5F3-K6QBZ-B3FAO-RVBWM' | The map appKey from https://apis.map.qq.com/ . |
secretKey | string | false | 'SWvT26ypwq5Nwb5RvS8cLi6NSoH8HlJX' | SecretKey from https://lbs.qq.com/dev/console/application/mine . |
value | string | false | - | The changed value. |
lng | number | false | - | The longtitude of the address. |
lat | number | false | - | The latitude of the address. |
onChange | func | false | noop | The change handler. |
onError | func | false | noop | The handler when has error caught. |
readOnly | bool | false | false | If lat/lng should be editalbe. |
- import css
@import "~@jswork/react-ant-geo-input/dist/style.css";
// or use sass
@import "~@jswork/react-ant-geo-input/dist/style.scss";
// customize your styles:
$react-ant-geo-input-options: ()
- import js
import ReactDemokit from '@jswork/react-demokit';
import React from 'react';
import ReactDOM from 'react-dom';
import ReactAntGeoInput from '@jswork/react-ant-geo-input';
import './assets/style.scss';
class App extends React.Component {
state = {
value: '上海市浦东新区博云路2号浦软大厦5楼',
lat: 31.202328,
lng: 121.603882
};
render() {
const { value, lat, lng } = this.state;
return (
<ReactDemokit
className="p-3 app-container"
url="https://github.com/afeiship/react-ant-geo-input">
<ReactAntGeoInput
value={value}
lat={lat}
lng={lng}
onChange={(e) => {
this.setState(e.target.value);
console.log('e:', e.target.value);
}}
/>
</ReactDemokit>
);
}
}
ReactDOM.render(<App />, document.getElementById('app'));
- set proxy
proxy: { '/ws/geocoder': 'https://apis.map.qq.com' }
- preview at: http://0.0.0.0:8080/
Code released under the MIT license.