Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in the componentWillUnmount method. in MapViewDirections #1096

Open
uchitchakma opened this issue May 19, 2022 · 0 comments

Comments

@uchitchakma
Copy link

import { StyleSheet, Text, View } from 'react-native'
import React from 'react'
import MapView, {Marker} from 'react-native-maps'
import tw from 'twrnc';
import { useSelector } from 'react-redux';
import { selectDestination, selectOrigin } from '../../navSlice/navSlice';
import MapViewDirections from 'react-native-maps-directions';
import {GOOGLE_MAPS_APIKEY} from "@env";

const Map = () => {
const origin = useSelector(selectOrigin);
const destination = useSelector(selectDestination);
return (
<MapView
style={twflex-1}
mapType= {'hybrid'}
initialRegion={{

  latitude: origin.location.lat,
  longitude: origin.location.lng,
  latitudeDelta: 0.005,
  longitudeDelta: 0.005,
}}

{!!origin && !!destination && (
<MapViewDirections
origin={origin.description}
destination={destination.description}
apikey={GOOGLE_MAPS_APIKEY}
lineDashPattern={[0]}
onError={error => console.log("Directions error: ", error)}
strokeWidth={3}
strokeColor="black"
/>

)}

{origin?.location && (
<Marker
coordinate = {{
latitude: origin.location.lat,
longitude: origin.location.lng,

  }}
  title= "Origin"
  description={origin.description}
  identifier="origin"
/>

)}
{destination?.loaction && (
<Marker
coordinate={{
latitude: destination?.loaction.lat,
longitude: destination?.loaction.lng,
}}
title="Destination"
description={destination.description}
identifier="destination"
>

                </Marker>
            )}
) }

export default Map

// const styles = StyleSheet.create({})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant