__CAPGO_KEEP_2__
설치 단계와 이 플러그인의 전체 마크다운 가이드를 포함한 설정 지시를 복사하세요.
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/nativegeocoder`
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/nativegeocoder/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.
설치
설치 제목bun add @capgo/nativegeocoderbunx cap sync임포트
임포트 제목import { NativeGeocoder } from '@capgo/nativegeocoder';API 개요
API 개요 제목reverseGeocode
역지오코딩위도와 경도에서 주소로 변환
import { NativeGeocoder } from '@capgo/nativegeocoder';
await NativeGeocoder.reverseGeocode({} as ReverseOptions);forwardGeocode
“forwardGeocode” 섹션주소에서 위도와 경도로 변환
import { NativeGeocoder } from '@capgo/nativegeocoder';
await NativeGeocoder.forwardGeocode({} as ForwardOptions);타입 참조
“Type Reference” 섹션ReverseOptions
“ReverseOptions” 섹션export interface ReverseOptions { /** * latitude is a number representing the latitude of the location. */ latitude: number; /** * longitude is a number representing the longitude of the location. */ longitude: number; /** * Localise the results to the given locale. */ useLocale?: boolean; /** * locale is a string in the format of language_country, for example en_US. */ defaultLocale?: string; /** * Max number of results to return. */ maxResults?: number; /** * Only used for web platform to use google api */ apiKey?: string; /** * Only used for web platform to use google api */ resultType?: string;}Address
“Address” 섹션export interface Address { latitude: number; longitude: number; countryCode: string; countryName: string; postalCode: string; administrativeArea: string; subAdministrativeArea: string; locality: string; subLocality: string; thoroughfare: string; subThoroughfare: string; areasOfInterest: string[];}ForwardOptions
“ForwardOptions” 섹션export interface ForwardOptions { /** * address is a string of the address to be geocoded. */ addressString: string; /** * Localise the results to the given locale. */ useLocale?: boolean; /** * locale is a string in the format of language_country, for example en_US. */ defaultLocale?: string; /** * Max number of results to return. */ maxResults?: number; /** * Only used for web platform to use google api */ apiKey?: string;}진실의 근원
‘진실의 근원’이라는 제목의 섹션이 페이지는 플러그인의 src/definitions.ts공개 API이 업스트림에서 변경될 때 다시 동기화 하십시오.