Don't dispatch change events when reading features

Based on initial work by https://github.com/Jinkwon
This commit is contained in:
Frederic Junod
2019-01-15 09:00:46 +01:00
parent aa0bc8175b
commit 787fd4aa44
8 changed files with 15 additions and 15 deletions

View File

@@ -121,7 +121,7 @@ class GeoJSON extends JSONFeature {
}
if (geoJSONFeature['properties']) {
feature.setProperties(geoJSONFeature['properties']);
feature.setProperties(geoJSONFeature['properties'], true);
}
return feature;
}