I have an issue with the connection request in google street view publish API. Both with single and multiple target. If i create single target from source photo
{
"updatePhotoRequests": [
{
"updateMask": "connections",
" photo": {
"photoId": {
"id": "pano_3"
},
"connections": [
{
"target": {
"id": "pano_4"
}
},
]
}
}
]
}
How the above JSON request set Panorama connection to specific direction of the target panorama. For e.g if i set a connection from pano_1 north position to pano_2 south position its not set properly. the link arrow show to right direction rather than forward or backward direction. The following image help to understand the problem
In the above image i intended to create connection to go further but its showing the right arrow button rather than forward button.
Also same issue with multiple photos
{
"updatePhotoRequests": [
{
"updateMask": "connections",
"photo": {
"photoId": {
"id": "pano_1"
},
"connections": [
{
"target": {
"id": "pano_2"
}
},
{
"target": {
"id": "pano_3"
}
}
]
}
}
]
}