Skip to content

Commit

Permalink
split GPS column into Longitude and Latitude
Browse files Browse the repository at this point in the history
  • Loading branch information
ila131 committed Jun 29, 2023
1 parent d786b47 commit 2ccddc8
Showing 1 changed file with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,19 @@ export const weatherRealTimeListView: ListViewConfig = {
},
},
{
title: 'GPS Data',
component: CellComponent.GpsPointsCell,
title: 'Latitude',
component: CellComponent.StringCell,
class: 'w-48',
fields: {
text: 'latitude',
},
},
{
title: 'Longitude',
component: CellComponent.StringCell,
class: 'w-48',
fields: {
latitude: 'latitude',
longitude: 'longitude',
text: 'longitude',
},
},
{
Expand Down

0 comments on commit 2ccddc8

Please sign in to comment.