0.0.20240508 • Published 20 hours ago

@maxim_mazurok/gapi.client.streetviewpublish-v1 v0.0.20240508

Weekly downloads
-
License
MIT
Repository
github
Last release
20 hours ago

TypeScript typings for Street View Publish API v1

Publishes 360 photos to Google Maps, along with position, orientation, and connectivity metadata. Apps can offer an interface for positioning, connecting, and uploading user-generated Street View images. For detailed description please check documentation.

Installing

Install typings for Street View Publish API:

npm install @types/gapi.client.streetviewpublish-v1 --save-dev

Usage

You need to initialize Google API client in your code:

gapi.load('client', () => {
  // now we can use gapi.client
  // ...
});

Then load api client wrapper:

gapi.client.load(
  'https://streetviewpublish.googleapis.com/$discovery/rest?version=v1',
  () => {
    // now we can use:
    // gapi.client.streetviewpublish
  }
);
// Deprecated, use discovery document URL, see https://github.com/google/google-api-javascript-client/blob/master/docs/reference.md#----gapiclientloadname----version----callback--
gapi.client.load('streetviewpublish', 'v1', () => {
  // now we can use:
  // gapi.client.streetviewpublish
});

Don't forget to authenticate your client before sending any request to resources:

// declare client_id registered in Google Developers Console
var client_id = '',
  scope = [
    // Publish and manage your 360 photos on Google Street View
    'https://www.googleapis.com/auth/streetviewpublish',
  ],
  immediate = true;
// ...

gapi.auth.authorize(
  {client_id: client_id, scope: scope, immediate: immediate},
  authResult => {
    if (authResult && !authResult.error) {
      /* handle successful authorization */
    } else {
      /* handle authorization error */
    }
  }
);

After that you can use Street View Publish API resources:

/*
After the client finishes uploading the photo with the returned UploadRef, CreatePhoto publishes the uploaded Photo to Street View on Google Maps. Currently, the only way to set heading, pitch, and roll in CreatePhoto is through the [Photo Sphere XMP metadata](https://developers.google.com/streetview/spherical-metadata) in the photo bytes. CreatePhoto ignores the `pose.heading`, `pose.pitch`, `pose.roll`, `pose.altitude`, and `pose.level` fields in Pose. This method returns the following error codes: * google.rpc.Code.INVALID_ARGUMENT if the request is malformed or if the uploaded photo is not a 360 photo. * google.rpc.Code.NOT_FOUND if the upload reference does not exist. * google.rpc.Code.RESOURCE_EXHAUSTED if the account has reached the storage limit.
*/
await gapi.client.streetviewpublish.photo.create({});

/*
Deletes a Photo and its metadata. This method returns the following error codes: * google.rpc.Code.PERMISSION_DENIED if the requesting user did not create the requested photo. * google.rpc.Code.NOT_FOUND if the photo ID does not exist.
*/
await gapi.client.streetviewpublish.photo.delete({photoId: 'photoId'});

/*
Gets the metadata of the specified Photo. This method returns the following error codes: * google.rpc.Code.PERMISSION_DENIED if the requesting user did not create the requested Photo. * google.rpc.Code.NOT_FOUND if the requested Photo does not exist. * google.rpc.Code.UNAVAILABLE if the requested Photo is still being indexed.
*/
await gapi.client.streetviewpublish.photo.get({photoId: 'photoId'});

/*
Creates an upload session to start uploading photo bytes. The method uses the upload URL of the returned UploadRef to upload the bytes for the Photo. In addition to the photo requirements shown in https://support.google.com/maps/answer/7012050?ref_topic=6275604, the photo must meet the following requirements: * Photo Sphere XMP metadata must be included in the photo metadata. See https://developers.google.com/streetview/spherical-metadata for the required fields. * The pixel size of the photo must meet the size requirements listed in https://support.google.com/maps/answer/7012050?ref_topic=6275604, and the photo must be a full 360 horizontally. After the upload completes, the method uses UploadRef with CreatePhoto to create the Photo object entry.
*/
await gapi.client.streetviewpublish.photo.startUpload({});

/*
Updates the metadata of a Photo, such as pose, place association, connections, etc. Changing the pixels of a photo is not supported. Only the fields specified in the updateMask field are used. If `updateMask` is not present, the update applies to all fields. This method returns the following error codes: * google.rpc.Code.PERMISSION_DENIED if the requesting user did not create the requested photo. * google.rpc.Code.INVALID_ARGUMENT if the request is malformed. * google.rpc.Code.NOT_FOUND if the requested photo does not exist. * google.rpc.Code.UNAVAILABLE if the requested Photo is still being indexed.
*/
await gapi.client.streetviewpublish.photo.update({id: 'id'});

/*
Deletes a list of Photos and their metadata. Note that if BatchDeletePhotos fails, either critical fields are missing or there is an authentication error. Even if BatchDeletePhotos succeeds, individual photos in the batch may have failures. These failures are specified in each PhotoResponse.status in BatchDeletePhotosResponse.results. See DeletePhoto for specific failures that can occur per photo.
*/
await gapi.client.streetviewpublish.photos.batchDelete({});

/*
Gets the metadata of the specified Photo batch. Note that if BatchGetPhotos fails, either critical fields are missing or there is an authentication error. Even if BatchGetPhotos succeeds, individual photos in the batch may have failures. These failures are specified in each PhotoResponse.status in BatchGetPhotosResponse.results. See GetPhoto for specific failures that can occur per photo.
*/
await gapi.client.streetviewpublish.photos.batchGet({});

/*
Updates the metadata of Photos, such as pose, place association, connections, etc. Changing the pixels of photos is not supported. Note that if BatchUpdatePhotos fails, either critical fields are missing or there is an authentication error. Even if BatchUpdatePhotos succeeds, individual photos in the batch may have failures. These failures are specified in each PhotoResponse.status in BatchUpdatePhotosResponse.results. See UpdatePhoto for specific failures that can occur per photo. Only the fields specified in updateMask field are used. If `updateMask` is not present, the update applies to all fields. The number of UpdatePhotoRequest messages in a BatchUpdatePhotosRequest must not exceed 20. > Note: To update Pose.altitude, Pose.latLngPair has to be filled as well. Otherwise, the request will fail.
*/
await gapi.client.streetviewpublish.photos.batchUpdate({});

/*
Lists all the Photos that belong to the user. > Note: Recently created photos that are still being indexed are not returned in the response.
*/
await gapi.client.streetviewpublish.photos.list({});

/*
After the client finishes uploading the PhotoSequence with the returned UploadRef, CreatePhotoSequence extracts a sequence of 360 photos from a video or Extensible Device Metadata (XDM, http://www.xdm.org/) to be published to Street View on Google Maps. `CreatePhotoSequence` returns an Operation, with the PhotoSequence Id set in the `Operation.name` field. This method returns the following error codes: * google.rpc.Code.INVALID_ARGUMENT if the request is malformed. * google.rpc.Code.NOT_FOUND if the upload reference does not exist.
*/
await gapi.client.streetviewpublish.photoSequence.create({});

/*
Deletes a PhotoSequence and its metadata. This method returns the following error codes: * google.rpc.Code.PERMISSION_DENIED if the requesting user did not create the requested photo sequence. * google.rpc.Code.NOT_FOUND if the photo sequence ID does not exist. * google.rpc.Code.FAILED_PRECONDITION if the photo sequence ID is not yet finished processing.
*/
await gapi.client.streetviewpublish.photoSequence.delete({
  sequenceId: 'sequenceId',
});

/*
Gets the metadata of the specified PhotoSequence via the Operation interface. This method returns the following three types of responses: * `Operation.done` = false, if the processing of PhotoSequence is not finished yet. * `Operation.done` = true and `Operation.error` is populated, if there was an error in processing. * `Operation.done` = true and `Operation.response` is poulated, which contains a PhotoSequence message. This method returns the following error codes: * google.rpc.Code.PERMISSION_DENIED if the requesting user did not create the requested PhotoSequence. * google.rpc.Code.NOT_FOUND if the requested PhotoSequence does not exist.
*/
await gapi.client.streetviewpublish.photoSequence.get({
  sequenceId: 'sequenceId',
});

/*
Creates an upload session to start uploading photo sequence data. The upload URL of the returned UploadRef is used to upload the data for the `photoSequence`. After the upload is complete, the UploadRef is used with CreatePhotoSequence to create the PhotoSequence object entry.
*/
await gapi.client.streetviewpublish.photoSequence.startUpload({});

/*
Lists all the PhotoSequences that belong to the user, in descending CreatePhotoSequence timestamp order.
*/
await gapi.client.streetviewpublish.photoSequences.list({});
0.0.20240508

20 hours ago

0.0.20240507

2 days ago

0.0.20240505

4 days ago

0.0.20240501

8 days ago

0.0.20240430

9 days ago

0.0.20240429

10 days ago

0.0.20240428

11 days ago

0.0.20240424

15 days ago

0.0.20240423

16 days ago

0.0.20240422

17 days ago

0.0.20240421

18 days ago

0.0.20240418

22 days ago

0.0.20240414

25 days ago

0.0.20240410

29 days ago

0.0.20240409

30 days ago

0.0.20240407

1 month ago

0.0.20240402

1 month ago

0.0.20240403

1 month ago

0.0.20240401

1 month ago

0.0.20240331

1 month ago

0.0.20240327

1 month ago

0.0.20240326

1 month ago

0.0.20240325

1 month ago

0.0.20240324

2 months ago

0.0.20240320

2 months ago

0.0.20240319

2 months ago

0.0.20240318

2 months ago

0.0.20240317

2 months ago

0.0.20240313

2 months ago

0.0.20240310

2 months ago

0.0.20240312

2 months ago

0.0.20240306

2 months ago

0.0.20240305

2 months ago

0.0.20240304

2 months ago

0.0.20240303

2 months ago

0.0.20240228

2 months ago

0.0.20240226

2 months ago

0.0.20240227

2 months ago

0.0.20240224

2 months ago

0.0.20240221

3 months ago

0.0.20240220

3 months ago

0.0.20240219

3 months ago

0.0.20240218

3 months ago

0.0.20240213

3 months ago

0.0.20240211

3 months ago

0.0.20240207

3 months ago

0.0.20240206

3 months ago

0.0.20240204

3 months ago

0.0.20240131

3 months ago

0.0.20240130

3 months ago

0.0.20240129

3 months ago

0.0.20240128

3 months ago

0.0.20240123

4 months ago

0.0.20240120

4 months ago

0.0.20240114

4 months ago

0.0.20240115

4 months ago

0.0.20240110

4 months ago

0.0.20240109

4 months ago

0.0.20240107

4 months ago

0.0.20240103

4 months ago

0.0.20240102

4 months ago

0.0.20231213

5 months ago

0.0.20231212

5 months ago

0.0.20231210

5 months ago

0.0.20231205

5 months ago

0.0.20231204

5 months ago

0.0.20231203

5 months ago

0.0.20231128

5 months ago

0.0.20230816

9 months ago

0.0.20231106

6 months ago

0.0.20231105

6 months ago

0.0.20230811

9 months ago

0.0.20231108

6 months ago

0.0.20231107

6 months ago

0.0.20231113

6 months ago

0.0.20231112

6 months ago

0.0.20231115

6 months ago

0.0.20231114

6 months ago

0.0.20230807

9 months ago

0.0.20230808

9 months ago

0.0.20230926

8 months ago

0.0.20230927

7 months ago

0.0.20230806

9 months ago

0.0.20230809

9 months ago

0.0.20230920

8 months ago

0.0.20230924

8 months ago

0.0.20230925

8 months ago

0.0.20230801

9 months ago

0.0.20231101

6 months ago

0.0.20230719

10 months ago

0.0.20230717

10 months ago

0.0.20230718

10 months ago

0.0.20230711

10 months ago

0.0.20231127

5 months ago

0.0.20230712

10 months ago

0.0.20231009

7 months ago

0.0.20230830

8 months ago

0.0.20231008

7 months ago

0.0.20230710

10 months ago

0.0.20230716

10 months ago

0.0.20231011

7 months ago

0.0.20231015

7 months ago

0.0.20230829

8 months ago

0.0.20230708

10 months ago

0.0.20230828

8 months ago

0.0.20230822

9 months ago

0.0.20231119

6 months ago

0.0.20230820

9 months ago

0.0.20230704

10 months ago

0.0.20230705

10 months ago

0.0.20230823

9 months ago

0.0.20230702

10 months ago

0.0.20230703

10 months ago

0.0.20231122

6 months ago

0.0.20231001

7 months ago

0.0.20231121

6 months ago

0.0.20231003

7 months ago

0.0.20231002

7 months ago

0.0.20231126

5 months ago

0.0.20231004

7 months ago

0.0.20231029

6 months ago

0.0.20230731

9 months ago

0.0.20231030

6 months ago

0.0.20230729

9 months ago

0.0.20231018

7 months ago

0.0.20231017

7 months ago

0.0.20230723

10 months ago

0.0.20230726

10 months ago

0.0.20230724

10 months ago

0.0.20230725

10 months ago

0.0.20231023

7 months ago

0.0.20231022

7 months ago

0.0.20231025

7 months ago

0.0.20231024

7 months ago

0.0.20230627

11 months ago

0.0.20230628

11 months ago

0.0.20230917

8 months ago

0.0.20230918

8 months ago

0.0.20230910

8 months ago

0.0.20230913

8 months ago

0.0.20230911

8 months ago

0.0.20230912

8 months ago

0.0.20230906

8 months ago

0.0.20230904

8 months ago

0.0.20230905

8 months ago

0.0.20230903

8 months ago

0.0.20230625

11 months ago

0.0.20230626

11 months ago

0.0.20230524

12 months ago

0.0.20230522

12 months ago

0.0.20230528

12 months ago

0.0.20230529

12 months ago

0.0.20230531

11 months ago

0.0.20230530

11 months ago

0.0.20230427

1 year ago

0.0.20230618

11 months ago

0.0.20230619

11 months ago

0.0.20230612

11 months ago

0.0.20230613

11 months ago

0.0.20230611

11 months ago

0.0.20230620

11 months ago

0.0.20230607

11 months ago

0.0.20230605

11 months ago

0.0.20230606

11 months ago

0.0.20230603

11 months ago

0.0.20230514

12 months ago

0.0.20230517

12 months ago

0.0.20230515

12 months ago

0.0.20230521

12 months ago

0.0.20230508

1 year ago

0.0.20230509

1 year ago

0.0.20230502

1 year ago

0.0.20230621

11 months ago

0.0.20230501

1 year ago

0.0.20230505

1 year ago

0.0.20230510

12 months ago

0.0.20230415

1 year ago

0.0.20230412

1 year ago

0.0.20230418

1 year ago

0.0.20230419

1 year ago

0.0.20230417

1 year ago

0.0.20230301

1 year ago

0.0.20230404

1 year ago

0.0.20230402

1 year ago

0.0.20230408

1 year ago

0.0.20230405

1 year ago

0.0.20230410

1 year ago

0.0.20230316

1 year ago

0.0.20230319

1 year ago

0.0.20230322

1 year ago

0.0.20230323

1 year ago

0.0.20230321

1 year ago

0.0.20230304

1 year ago

0.0.20230426

1 year ago

0.0.20230302

1 year ago

0.0.20230424

1 year ago

0.0.20230308

1 year ago

0.0.20230309

1 year ago

0.0.20230307

1 year ago

0.0.20230312

1 year ago

0.0.20230326

1 year ago

0.0.20230327

1 year ago

0.0.20230328

1 year ago

0.0.20230330

1 year ago

0.0.20230228

1 year ago

0.0.20230226

1 year ago

0.0.20230129

1 year ago

0.0.20230131

1 year ago

0.0.20230201

1 year ago

0.0.20230202

1 year ago

0.0.20230214

1 year ago

0.0.20230215

1 year ago

0.0.20230219

1 year ago

0.0.20230220

1 year ago

0.0.20230223

1 year ago

0.0.20230221

1 year ago

0.0.20230206

1 year ago

0.0.20230209

1 year ago

0.0.20230207

1 year ago

0.0.20230208

1 year ago

0.0.20230212

1 year ago

0.0.20221115

1 year ago

0.0.20221114

1 year ago

0.0.20221112

1 year ago

0.0.20221110

1 year ago

0.0.20230102

1 year ago

0.0.20221109

1 year ago

0.0.20221108

2 years ago

0.0.20221107

2 years ago

0.0.20221106

2 years ago

0.0.20230117

1 year ago

0.0.20230118

1 year ago

0.0.20230115

1 year ago

0.0.20230116

1 year ago

0.0.20221212

1 year ago

0.0.20221210

1 year ago

0.0.20230121

1 year ago

0.0.20230124

1 year ago

0.0.20221208

1 year ago

0.0.20221207

1 year ago

0.0.20221206

1 year ago

0.0.20221129

1 year ago

0.0.20230123

1 year ago

0.0.20221205

1 year ago

0.0.20221128

1 year ago

0.0.20221204

1 year ago

0.0.20221126

1 year ago

0.0.20230104

1 year ago

0.0.20221201

1 year ago

0.0.20221124

1 year ago

0.0.20230108

1 year ago

0.0.20221121

1 year ago

0.0.20230109

1 year ago

0.0.20221120

1 year ago

0.0.20230110

1 year ago

0.0.20230111

1 year ago

0.0.20221117

1 year ago

0.0.20221031

2 years ago

0.0.20221029

2 years ago

0.0.20221020

2 years ago

0.0.20221027

2 years ago

0.0.20221103

2 years ago

0.0.20221026

2 years ago

0.0.20221102

2 years ago

0.0.20221025

2 years ago

0.0.20221101

2 years ago

0.0.20221024

2 years ago

0.0.20221023

2 years ago

0.0.20220927

2 years ago

0.0.20220928

2 years ago

0.0.20220929

2 years ago

0.0.20221019

2 years ago

0.0.20221018

2 years ago

0.0.20221017

2 years ago

0.0.20221016

2 years ago

0.0.20221014

2 years ago

0.0.20221013

2 years ago

0.0.20221011

2 years ago

0.0.20221009

2 years ago

0.0.20221006

2 years ago

0.0.20221005

2 years ago

0.0.20221004

2 years ago

0.0.20221001

2 years ago

0.0.20220917

2 years ago

0.0.20220906

2 years ago

0.0.20220907

2 years ago

0.0.20220919

2 years ago

0.0.20220908

2 years ago

0.0.20220831

2 years ago

0.0.20220920

2 years ago

0.0.20220921

2 years ago

0.0.20220910

2 years ago

0.0.20220922

2 years ago

0.0.20220912

2 years ago

0.0.20220901

2 years ago

0.0.20220913

2 years ago

0.0.20220914

2 years ago

0.0.20220926

2 years ago

0.0.20220915

2 years ago

0.0.20220904

2 years ago

0.0.20220817

2 years ago

0.0.20220816

2 years ago

0.0.20220812

2 years ago

0.0.20220811

2 years ago