mirror of
https://github.com/HSLdevcom/digitransit-ui
synced 2026-01-30 18:30:30 +01:00
13 lines
291 B
JavaScript
13 lines
291 B
JavaScript
/**
|
|
* Create Features for a given list of objects
|
|
*/
|
|
export function createFeatureObjects(objects) {
|
|
return objects.map(object => ({
|
|
type: 'Feature',
|
|
properties: object.properties,
|
|
geometry: {
|
|
type: 'Point',
|
|
coordinates: [object.lat, object.lon],
|
|
},
|
|
}));
|
|
}
|