Hello all,
I am seeking help to configure the JSON reader, which I am not familiar with.
The JSON file is not a GeoJSON, (despite containing coordinates). Only the JSON (JavaScript Object Notation) Reader recognises it.
There are two arrays containing objects. custom_markers and markers
"custom_markers": [
{
"rating": 3,
"gallons": 0,
"marker_type": "Other",
"mileage": 0,
"longitude": "152.690125",
"latitude": "-27.976959",
"price": 0,
"date": "1563341193.242588",
"pin_color_blue": 1,
"pin_color_red": 0,
"marker_description": "",
"pin_color_green": 0.5019607843137255,
"name": "Stop 1 "
},
there are about 17 custom markers and these should be rendered as point objects
"markers": [
{
"longitude": "152.689234",
"date": "1563340968.211667",
"drive_distance": 6,
"markerDescription": null,
"drive_time": 0,
"latitude": "-27.994466",
"name": null
},
there are over a hundred markers and these should be rendered as a single polyline
I don't know how to tweak the settings of the JSON reader to read the JSON properly.
Thanks,
Nick