Merge pull request #4332 from fredj/geojson_id_0_write

Fix write out GeoJSON features with id equal to 0
This commit is contained in:
Frédéric Junod
2015-10-28 15:19:57 +01:00
2 changed files with 7 additions and 1 deletions

View File

@@ -530,7 +530,7 @@ ol.format.GeoJSON.prototype.writeFeatureObject = function(
'type': 'Feature'
};
var id = feature.getId();
if (id) {
if (id !== undefined) {
object['id'] = id;
}
var geometry = feature.getGeometry();