npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

amap-react-native

v0.0.8

Published

高德sdk封装

Downloads

18

Readme

高德sdk封装

安装

npm install amap-react-native --save

配置

android

1 your react native project/android/app/build.gradle下添加
dependencies {
    ...
    # 根据需要添加以下依赖
    compile 'com.amap.api:map2d:latest.integration' # 导航相关
    compile 'com.amap.api:navi-3dmap:latest.integration' # 导航相关
    compile 'com.amap.api:location:latest.integration' # 定位相关
    # 必要
    compile project(':amap-react-native')
}

2 在android/settings.gradle下添加
include ':amap-react-native'
project(':amap-react-native').projectDir = new File(rootProject.projectDir, '../node_modules/amap-react-native/android')

3 在MainApplication.java下添加
import com.chf.amap.AmapReactPackage; // add this
...
protected List<ReactPackage> getPackages() {
  return Arrays.<ReactPackage>asList(
      new MainReactPackage(), ...
      new AmapReactPackage() // add this
  );
}

4 在AndroidManifest.xml中
<!-- 配置activity -->
<activity android:name="com.amap.api.navi.AmapRouteActivity"
              android:theme="@android:style/Theme.NoTitleBar"
              android:configChanges="orientation|keyboardHidden|screenSize" />

<!-- 增加所需权限 -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<user-permission android:name="android.permission.WAKE_LOCK" />

ios

暂未实现

Usage

location

import Amap from 'amap-react-native';
Amap.location.startLocation(); // 启动时调一次
// 中途需要获取的时候调用
Amap.location.getLocation(function(location){ // 成功回调函数
              console.log(location); // 格式 long,lat
          }, function(code, info, lastLocation) { // 失败回调函数
              console.log(code); // 失败代码
              console.log(info); // 失败信息
              console.log(lastLocation); // 最近一次获取的位置
          });   
Amap.location.stopLocation();  // 结束时调一次

navigation

Amap.navigation.startNavi({
    "name" : "地图上显示的名字",
    "coordinate" : "经纬度坐标"  // 格式 long,lat
  }, function(e){ // 错误返回
    console.log(e);
  });