Tried implementing basic map markers

This commit is contained in:
Arnaud Vergnet 2020-06-22 16:04:08 +02:00
parent 211e57167d
commit 1af4688329

View file

@ -6,32 +6,48 @@ import {withTheme} from 'react-native-paper';
import {StackNavigationProp} from "@react-navigation/stack";
import type {CustomTheme} from "../../managers/ThemeManager";
import MapboxGL from "@react-native-mapbox-gl/maps";
import exampleIcon from '../../../assets/icon-notification.png';
type Props = {
navigation: StackNavigationProp,
theme: CustomTheme,
}
type State = {
featureCollection: Array<Object>,
}
MapboxGL.setAccessToken("sk.eyJ1IjoiYW1pY2FsZS1pbnNhdCIsImEiOiJja2JpM212Z3QwYmxmMnhsc3RxZWYza2Q5In0.og84RKRa6-vr3qRA1qU9Aw");
const layerStyles = {
smileyFace: {
fillAntialias: true,
fillColor: 'white',
fillOutlineColor: 'rgba(255, 255, 255, 0.84)',
const styles = {
icon: {
iconImage: exampleIcon,
iconAllowOverlap: true,
},
};
const FEATURES = [{
type: 'Feature',
geometry: {
type: 'Point',
coordinates: [1.4669608, 43.5698867],
}
}]
/**
* Class defining the app's map screen.
*/
class MapScreen extends React.Component<Props> {
class MapScreen extends React.Component<Props, State> {
map: { current: null | MapboxGL.MapView };
constructor() {
super();
this.map = React.createRef();
this.state = {
featureCollection: [],
};
}
componentDidMount() {
@ -39,23 +55,47 @@ class MapScreen extends React.Component<Props> {
}
onSymbolPress = (feature) => {
console.log("coucou");
}
onSourceLayerPress = ({features, coordinates, point}) => {
console.log(
'You pressed a layer here are your features:',
features,
coordinates,
point,
);
}
render() {
return (
<View style={{flex: 1}}>
<MapboxGL.MapView
style={{flex: 1}}
styleURL={MapboxGL.StyleURL.Outdoors}
ref={this.map}
styleURL={MapboxGL.StyleURL.Outdoors}
surfaceView={true}
onPress={async () => {
const center = await this.map.current.getCenter();
console.log(center);
onPress={(e) => {
console.log(e)
}}
>
<MapboxGL.Camera
zoomLevel={15}
centerCoordinate={[1.4669608, 43.5698867]}
pitch={30}
/>
{/*<MapboxGL.ShapeSource*/}
{/* id="symbolLocationSource"*/}
{/* shape={{ type: 'FeatureCollection', features: FEATURES }}*/}
{/*>*/}
{/* <MapboxGL.SymbolLayer*/}
{/* id="symbolLocationSymbols"*/}
{/* minZoomLevel={15}*/}
{/* style={styles.icon}*/}
{/* />*/}
{/*</MapboxGL.ShapeSource>*/}
</MapboxGL.MapView>
</View>
);