1

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": {}
      }
droidBomb
  • 850
  • 5
  • 8
Veeresh
  • 111
  • 1
  • 1
  • 7

1 Answers1

0

Based from this documentation, NaN indicates an unmeasured quantity. As described in this link, when editing and viewing photo spheres, please be sure to verify and update the metadata accordingly as described later in this document. When specifying the pose and initial heading fields, please be sure to follow the Euler angle conventions discussed later in this document.

abielita
  • 13,147
  • 2
  • 17
  • 59