我想在我的 react native expo 项目中使用 react-native-maps 库中的 MapView 而无需进入 Google API 密钥定价。有没有办法做到这一点?目前,我正在使用 UrlTile 显示 Openstreetmap 地图,但我不确定这是否正确。
<MapView
region={location}
rotateEnabled={false}
style={{ flex: 1 }}
style={styles.map}
showsUserLocation
mapType="none"
>
<UrlTile
urlTemplate="https://a.tile.openstreetmap.de/tiles/osmde/{z}/{x}/{y}.png"
/>
<Marker
title="Home"
coordinate={{
latitude: location.latitude,
longitude: location.longitude,
}}
/>
</MapView>