探索无限可能:Mapbox Maps SDK for React Native
import React, { Component } from 'react';
import { StyleSheet, View } from 'react-native';
import MapboxGL from '@mapbox/react-native-mapbox-gl';
// 设置Mapbox访问令牌
MapboxGL.setAccessToken('您的Mapbox访问令牌');
export default class MapView extends Component {
render() {
return (
<View style={styles.container}>
<MapboxGL.MapView
style={styles.mapView}
zoomLevel={12}
centerCoordinate={[-74.5, 40]}
/>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
},
mapView: {
flex: 1,
},
});
在这个例子中,我们首先导入了React和React Native必须的库。然后,我们导入了MapboxGL
,这是Mapbox Maps SDK for React Native。接下来,我们通过设置访问令牌来初始化SDK。在MapView
组件中,我们定义了一个地图视图,并设置了地图的缩放级别和中心坐标。最后,我们使用React Native的StyleSheet
来定义地图视图的样式。
评论已关闭