react-google-maps-api icon indicating copy to clipboard operation
react-google-maps-api copied to clipboard

how to disable map zoom when DirectionsRenderer redraws the path

Open giangnguyenpzh opened this issue 2 years ago • 2 comments

how to disable map zoom when DirectionsRenderer redraws the path

const Directions = ({ directionsResponse }) => { return ( <DirectionsRenderer directions={directionsResponse} options={{ polylineOptions: { strokeColor: 'blue', }, markerOptions: { icon: { url: "icon.png", }, }, }} /> ) }

giangnguyenpzh avatar Dec 05 '23 04:12 giangnguyenpzh

use eslint-plugin-react-perf and cache all props before passing, and react.memo for all components

JustFly1984 avatar Dec 10 '23 09:12 JustFly1984