🗺️
Complete Map Features
Support multiple map types, gesture control, camera operations
Complete AMap solution built with Expo Modules
npm install expo-gaode-mapimport { MapView, ExpoGaodeMapModule } from 'expo-gaode-map';
// Initialize SDK
ExpoGaodeMapModule.initSDK({
androidKey: 'your-android-api-key',
iosKey: 'your-ios-api-key',
});
// Use map component
<MapView
style={{ flex: 1 }}
initialCameraPosition={{
target: { latitude: 39.9, longitude: 116.4 },
zoom: 10,
}}
myLocationEnabled={true}
/>