const isMarkerInRegion = ({ latitude, longitude, longitudeDelta, latitudeDelta}, {lng, lat}) => {
const minLatitude = latitude - latitudeDelta / 2;
const maxLatitude = latitude + latitudeDelta / 2;
const minLongitude = longitude - longitudeDelta / 2;
const maxLongitude = longitude + longitudeDelta / 2;
const isInLatitude = lat > minLatitude && lat < maxLatitude;
const isInLongitude = lng > minLongitude && lng < maxLongitude;
return isInLatitude && isInLongitude;
};
this.setState(({counter}) => {
++counter
})
this.state.counter = this.state.counter + 1;
this.setState({counter: 10})