UNPKG

react-native-amap3d

Version:

react-native 高德地图组件,支持 Android + iOS

12 lines (8 loc) 234 B
import { NativeModules } from "react-native"; const { AMapSdk } = NativeModules; export function init(apiKey?: string) { AMapSdk.initSDK(apiKey); } export function getVersion(): Promise<string> { return AMapSdk.getVersion(); }