geojson: fix MultiPoint syntax (#16368)

This commit is contained in:
Serghei Mihai 2017-05-17 09:45:18 +02:00
parent 9fce28d13d
commit bc669362e1
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ class VisualizationGeoJSONView(generics.GenericAPIView):
geojson.append({
'type': 'Feature',
'geometry': {
'type': 'Multipoint',
'type': 'MultiPoint',
'coordinates': row[len(drilldown)]['value'] or [],
},
'properties': properties,