@unif/react-native-amap-search
TypeScript icon, indicating that this package has built-in type declarations

0.1.42 • Public • Published

@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

  1. 获取高德key
  2. 在AppDelegate.m 引入头文件并设置高德 Key
#import <AMapFoundationKit/AMapFoundationKit.h>

[AMapServices sharedServices].apiKey = @"你的高德 Key";

-android

  1. 获取高德key
  2. 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:''});

用法

  1. 初始化
import { init, aMapPOIAroundSearch, aMapPOIIDSearch, aMapPOIKeywordsSearch } from '@unif/react-native-amap-search';
await = init({ios:'', android:''});
  1. 调用
// 周边搜索
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

Package Sidebar

Install

npm i @unif/react-native-amap-search

Weekly Downloads

0

Version

0.1.42

License

MIT

Unpacked Size

130 kB

Total Files

48

Last publish

Collaborators

  • hopeonedat