はじめから始める
このプラグインのインストール手順とマークダウンガイドを含むセットアッププロンプトをコピーします。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-pedometer`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/pedometer/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
Install
「インストール」のセクションAI-Assisted セットアップを使用してプラグインをインストールできます。AI ツールに Capgo スキルを追加するには、以下のコマンドを実行します。
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins次に、以下のコマンドを使用してください。
Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-pedometer` plugin in my project.Manual Setupを使用する場合は、以下のコマンドを実行してください。プラットフォーム固有の指示に従ってください。
bun add @capgo/capacitor-pedometerbunx cap syncImport
「Import」セクションimport { CapacitorPedometer } from '@capgo/capacitor-pedometer';APIの概要
「APIの概要」セクションgetMeasurement
「getMeasurement」セクション指定された時間範囲で歩数計測値を取得します。
import { CapacitorPedometer } from '@capgo/capacitor-pedometer';
await CapacitorPedometer.getMeasurement();isAvailable
「isAvailable」セクションこのデバイスで利用可能な歩数計機能を確認します。
import { CapacitorPedometer } from '@capgo/capacitor-pedometer';
await CapacitorPedometer.isAvailable();startMeasurementUpdates
「startMeasurementUpdates」セクションリアルタイム歩数計測値の更新を開始します。
オン Android iOS そして、 measurement イベントは、呼び出し後にのみ発生します。 startMeasurementUpdates().
import { CapacitorPedometer } from '@capgo/capacitor-pedometer';
await CapacitorPedometer.startMeasurementUpdates();stopMeasurementUpdates
セクション「ストップ測定更新」リアルタイム歩数計測値の更新を受信しないようにします。
import { CapacitorPedometer } from '@capgo/capacitor-pedometer';
await CapacitorPedometer.stopMeasurementUpdates();checkPermissions
セクション「チェックパーミッション」歩数計データへのアクセス許可を確認します。
オン アンドロイドこのチェックは、 ACTIVITY_RECOGNITION パーミッションを確認します。 オン, この動作はモーション使用許可のチェックを行います。
import { CapacitorPedometer } from '@capgo/capacitor-pedometer';
await CapacitorPedometer.checkPermissions();requestPermissions
セクションのタイトルは “requestPermissions” です。歩数データへのアクセス許可を求めます。
オン Android, この動作はモーション使用許可の要求を行います。 ACTIVITY_RECOGNITION オン iOS, この動作はモーション使用許可の要求を行います。
import { CapacitorPedometer } from '@capgo/capacitor-pedometer';
await CapacitorPedometer.requestPermissions();型参照
「タイプ リファレンス」GetMeasurementOptions
「測定オプションを取得する」export interface GetMeasurementOptions { /** * The start time for the measurement query (milliseconds since epoch). * * Required on **iOS**. * * @since 0.0.1 */ start?: number;
/** * The end time for the measurement query (milliseconds since epoch). * * Required on **iOS**. * * @since 0.0.1 */ end?: number;}Measurement
「測定」export interface Measurement { /** * The number of steps taken by the user. * * @since 0.0.1 */ numberOfSteps?: number;
/** * The estimated distance (in meters) traveled by the user. * * Only available on **iOS**. * * @since 0.0.1 */ distance?: number;
/** * The approximate number of floors ascended. * * Only available on **iOS**. * * @since 0.0.1 */ floorsAscended?: number;
/** * The approximate number of floors descended. * * Only available on **iOS**. * * @since 0.0.1 */ floorsDescended?: number;
/** * The current pace (in seconds per meter). * * Only available on **iOS**. * * @since 0.0.1 */ currentPace?: number;
/** * The current cadence (steps per second). * * Only available on **iOS**. * * @since 0.0.1 */ currentCadence?: number;
/** * The average active pace (in seconds per meter). * * Only available on **iOS**. * * @since 0.0.1 */ averageActivePace?: number;
/** * The start time of this measurement (milliseconds since epoch). * * @since 0.0.1 */ startDate?: number;
/** * The end time of this measurement (milliseconds since epoch). * * @since 0.0.1 */ endDate?: number;}IsAvailableResult
「利用可能結果」export interface IsAvailableResult { /** * Whether step counting is available. * * @since 0.0.1 */ stepCounting: boolean;
/** * Whether distance measurement is available. * * Only `true` on **iOS** devices that support distance tracking. * * @since 0.0.1 */ distance: boolean;
/** * Whether pace measurement is available. * * Only `true` on **iOS** devices that support pace tracking. * * @since 0.0.1 */ pace: boolean;
/** * Whether cadence measurement is available. * * Only `true` on **iOS** devices that support cadence tracking. * * @since 0.0.1 */ cadence: boolean;
/** * Whether floor counting is available. * * Only `true` on **iOS** devices that support floor tracking. * * @since 0.0.1 */ floorCounting: boolean;}PermissionStatus
「パーミッション ステータス」export interface PermissionStatus { /** * Permission state for activity recognition. * * On **Android**, this is the `ACTIVITY_RECOGNITION` permission. * On **iOS**, this is the motion usage permission. * * @since 0.0.1 */ activityRecognition: 'prompt' | 'prompt-with-rationale' | 'granted' | 'denied';}MeasurementEvent
「測定イベント」export type MeasurementEvent = Measurement;真実の源
ソース オブ トゥルースこのページはプラグインから生成されています。 src/definitions.ts.再度、パブリック API がアップストリームで変更されたときに、再度同期を実行してください。
Getting Started から続けてください。
Section titled “Getting Started から続けてください”あなたが使用している場合 Getting Started ダッシュボードと API の計画と実行を計画する場合、API を接続してください。 Using @capgo/capacitor-pedometer Using @capgo/capacitor-pedometer API Overview API Overview アサイン、コンターバーグ。 コンターバーグ、コンターバーグにいなたい、アサイン、》 コンターバーグ》。 API Keys for the implementation detail in API Keys, and コンターバーグ、コンターバーグにいなたい、》 コンターバーグ》。 バトシャング、コンターバーグ》 コンターバーグにいなたい、》 コンターバーグ》。