I have a GPS API that returns this
{“Response”:{“MetaInfo”:{“Timestamp”:“2021-08-16T11:42:04.830+0000”},“View”:[{"_type":“SearchResultsViewType”,“ViewId”:0,“Result”:[{“Relevance”:0.91,“MatchLevel”:“houseNumber”,“MatchQuality”:{“Country”:1.0,“City”:1.0,“Street”:[0.85],“HouseNumber”:1.0},“MatchType”:“pointAddress”,“Location”:{“LocationId”:“NT_qxGXgb3G3cd.7rBUiG7R6C_3A”,“LocationType”:“point”,“DisplayPosition”:{“Latitude”:-34.03144,“Longitude”:24.91555},“NavigationPosition”:[{“Latitude”:-34.03162,“Longitude”:24.91537}],“MapView”:{“TopLeft”:{“Latitude”:-34.0303158,“Longitude”:24.9141935},“BottomRight”:{“Latitude”:-34.0325642,“Longitude”:24.9169065}},“Address”:{“Label”:“7 Blombos St, Jeffreys Bay, 6330, South Africa”,“Country”:“ZAF”,“State”:“Eastern Cape”,“County”:“Kouga”,“City”:“Jeffreys Bay”,“District”:“Noorskloofpunt”,“Street”:“Blombos St”,“HouseNumber”:“7”,“PostalCode”:“6330”,“AdditionalData”:[{“value”:“South Africa”,“key”:“CountryName”},{“value”:“Eastern Cape”,“key”:“StateName”},{“value”:“Kouga”,“key”:“CountyName”}]}}}]}]}}
but I need to only extract this…
"NavigationPosition":[{“Latitude”:-34.03162,“Longitude”:24.91537}]
Can anyone tell me how to isolate this data from the returned json
Thanks
Tony