- 版本:1.4.0
- GitHub:
- NPM: https://npmjs.net.cn/package/%40nativescript-community%2Fsensors
- 下载次数
- 昨天:0
- 上周:4
- 上个月:53
@nativescript-community/sensors
Carto Mobile SDK 的 Nativescript 插件
iOS 示例 | Android 示例 |
目录
安装
从项目的根目录运行以下命令
ns plugin add @nativescript-community/sensors
使用
这是一个简单的示例。更多内容请参阅此处的文档
import { startListeningForSensor, stopListeningForSensor } from '@nativescript-community/sensors';
function onSensor(sensorData, sensorId: string) {
}
startListeningForSensor(sensor, this.onSensor);
stopListeningForSensor(sensor, this.onSensor);
示例
- 基本
- 一个基本的滑动抽屉。
演示和开发
仓库设置
仓库使用子模块。如果您没有使用 --recursive
进行克隆,则需要调用
git submodule update --init
用于安装和链接依赖项的包管理器必须是 pnpm
或 yarn
。 npm
不会工作。
要开发和测试:如果您使用 yarn
,则运行 yarn
;如果您使用 pnpm
,则运行 pnpm i
交互式菜单
要启动交互式菜单,请运行 npm start
(或 yarn start
或 pnpm start
)。这将列出所有常用脚本。
构建
npm run build.all
警告:似乎 yarn build.all
不会始终工作(在 node_modules/.bin
中找不到二进制文件),这就是为什么文档明确使用 npm run
演示
npm run demo.[ng|react|svelte|vue].[ios|android]
npm run demo.svelte.ios # Example
演示设置在某种程度上有些特殊,如果您想修改/添加演示,您不会直接在 demo-[ng|react|svelte|vue]
中工作。相反,您需要在 demo-snippets/[ng|react|svelte|vue]
中工作。您可以从每种风格的 install.ts
开始,看看如何注册新的演示
贡献
更新仓库
您可以很容易地更新仓库文件
首先更新子模块
npm run update
然后提交更改,然后更新常用文件
npm run sync
然后您可以运行 yarn|pnpm
,如果需要,提交更改的文件
更新README
npm run readme
更新文档
npm run doc
发布
发布完全由 lerna
处理(您可以添加 -- --bump major
来强制进行主要版本发布)。只需运行
npm run publish
修改子模块
仓库使用 https:// 为子模块,这意味着您无法直接将子模块推送到远程。一个简单的解决方案是修改 ~/.gitconfig
并添加
[url "ssh://[email protected]/"]
pushInsteadOf = https://github.com/
问题
如果您有任何问题/问题/评论,请随时创建问题或开始在NativeScript 社区 Discord 中进行对话。