You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 4, 2021. It is now read-only.
Hello,
I'm trying to render multiple markers on Map. The rendering is very laggy on iOS. However, the same code is comparatively faster on Android.
Please review the code and suggest corrections. Thanks in advance.
Below is the code snippet :
componentWillMount() {
this.getMapsMarker().done();
}
async getMapsMarker() {
let incidenceData = this.props.navigation.state.params;
let identifiers = []
for (var i = 0; i < incidenceData.length; i++) {
let incidenceObject = incidenceData[i];
let address = '';
if (incidenceObject.street) {
address = address + incidenceObject.street + ',';
}
if (incidenceObject.city) {
address = address + incidenceObject.city + ',';
}
if (incidenceObject.country) {
address = address + incidenceObject.country + ',';
}
if (incidenceObject.postalCode) {
address = address + incidenceObject.postalCode;
}
console.log(address)
let latitude = 0;
let longitude = 0;
try {
const res = await Geocoder.geocodeAddress(address)
console.log('pos', i)
console.log('geocode', res.length > 0 ? res[0].position : '')
latitude = res.length > 0 ? res[0].position.lat : 0;
longitude = res.length > 0 ? res[0].position.lng : 0
} catch (err) {
console.log(err)
}
let coordinates = {
latitude,
longitude,
}
incidenceData[i].coordinates = coordinates;
render() {
return (
<MapView
style={styles.map}
onMapReady={this.onMapReady}
ref={(ref) => { this.mapRef = ref }}
style={styles.map}>
{this.state.mapMarkers && this.state.mapMarkers.map((marker, i) => {
return (
<MapView.Marker.Animated
identifier={marker.subject}
key={marker.entity_id}
coordinate={marker.coordinates}
tracksViewChanges={!this.state.initialized}
>
<MapView.Callout onPress={() => {
this.navigateToForms();
}}>
{marker.subject}
</MapView.Callout>
</MapView.Marker.Animated>
)
})}
);
}
Thanks in advance.
The text was updated successfully, but these errors were encountered: