Bing Maps in React JS - Component doesn't Load when props change
问题 I am trying to show bing maps on my React Application using props. The Maps are properly displayed on load but when the props change it will not reload the map component. I know the issue is componentDidMount() will be called only once when the component loads but I am not sure how to resolve it. interface IState { addresses: Array<PropertyDetails>; } interface PropertyDetails { fullAddress: string; propertyNumber: number } export class Map extends React.Component<{ data }, IState> {