forked from cemaden-educacao/WPD-MobileApp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
648 B
27 lines
648 B
import React from "react";
|
|
import { View, StyleSheet, Image } from "react-native";
|
|
import MapView from "react-native-maps";
|
|
|
|
const markerSize = 30;
|
|
|
|
export default function MapMarker({ ID, title, image, coordinate, ...props }) {
|
|
console.log(ID);
|
|
return (
|
|
<MapView.Marker key={ID} coordinate={coordinate} title={title} {...props}>
|
|
<View>
|
|
<Image style={styles.markerPoint} source={image} resizeMode="stretch" />
|
|
</View>
|
|
</MapView.Marker>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
markerPoint: {
|
|
alignSelf: "center",
|
|
height: markerSize,
|
|
width: markerSize,
|
|
},
|
|
title: {
|
|
fontWeight: "400",
|
|
},
|
|
});
|