@unif/react-native-amap-search
v0.2.1
Published
amap search
Downloads
279
Readme
@unif/react-native-amap-search
amap search
安装
npm install @unif/react-native-amap-search
or
yarn add @unif/react-native-amap-search
# ios 项目需要更新 pods
cd ios
pod install
使用
添加高德key
-ios
- 获取高德key
- 在AppDelegate.m 引入头文件并设置高德 Key
#import <AMapFoundationKit/AMapFoundationKit.h>
[AMapServices sharedServices].apiKey = @"你的高德 Key";
-android
- 获取高德key
- AndroidManifest.xml(一般在 android\app\src\main\AndroidManifest.xml),添加如下代码
<application>
<meta-data android:name="com.amap.api.v2.apikey" android:value="你的高德 Key" />
</application>
- js,使用js可省略上面ios、android步骤
init({ios:'',android:''});
用法
- 初始化
import { init, aMapPOIAroundSearch, aMapPOIIDSearch, aMapPOIKeywordsSearch } from '@unif/react-native-amap-search';
await = init({ios:'', android:''});
- 调用
// 周边搜索
const res = await = aMapPOIAroundSearch({
keyword: '星巴克',
type: '咖啡店',
city: '上海市',
latitude: 31.223333,
longitude: 121.222222,
currentPage: 1,
pageSize: 25,
radius: 500,
});
文档
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
Made with create-react-native-library