|
@@ -6,7 +6,6 @@ import { Colors } from 'src/theme';
|
|
|
|
|
|
import CheckSvg from 'assets/icons/mark.svg';
|
|
import CheckSvg from 'assets/icons/mark.svg';
|
|
import * as MapLibreRN from '@maplibre/maplibre-react-native';
|
|
import * as MapLibreRN from '@maplibre/maplibre-react-native';
|
|
-import { Position } from '@turf/turf';
|
|
|
|
|
|
|
|
const MarkerItem = ({
|
|
const MarkerItem = ({
|
|
marker,
|
|
marker,
|
|
@@ -42,7 +41,9 @@ const MarkerItem = ({
|
|
</View>
|
|
</View>
|
|
<View style={styles.calloutTextContainer}>
|
|
<View style={styles.calloutTextContainer}>
|
|
<Text style={styles.seriesName}>{marker.series_name}</Text>
|
|
<Text style={styles.seriesName}>{marker.series_name}</Text>
|
|
- <Text style={styles.markerName}>{marker.name}</Text>
|
|
|
|
|
|
+ <Text style={styles.markerName} selectable={true}>
|
|
|
|
+ {marker.name}
|
|
|
|
+ </Text>
|
|
</View>
|
|
</View>
|
|
<TouchableOpacity
|
|
<TouchableOpacity
|
|
style={[
|
|
style={[
|
|
@@ -91,7 +92,9 @@ const MarkerItem = ({
|
|
</View>
|
|
</View>
|
|
<View style={styles.calloutTextContainer}>
|
|
<View style={styles.calloutTextContainer}>
|
|
<Text style={styles.seriesName}>{marker.series_name}</Text>
|
|
<Text style={styles.seriesName}>{marker.series_name}</Text>
|
|
- <Text style={styles.markerName}>{marker.name}</Text>
|
|
|
|
|
|
+ <Text style={styles.markerName} selectable={true}>
|
|
|
|
+ {marker.name}
|
|
|
|
+ </Text>
|
|
</View>
|
|
</View>
|
|
<TouchableOpacity
|
|
<TouchableOpacity
|
|
style={[
|
|
style={[
|