In street view api, while uploading a photo metadata, I am providing the altitude value in meters.
But in the Method: photo.get in the parameter altitude is returning as "Nan".
While sending request.
"pose": {
"latLngPair": {
"latitude": 12.9112,
"longitude": 85.579698
},
"altitude": 928.433,
"heading": 150
}
While receiving request.
"pose": {
"latLngPair": {
"latitude": 12.9112,
"longitude": 85.579698
},
"altitude": "NaN",
"heading": 150,
"pitch": "NaN",
"roll": "NaN",
"level": {}
}