GoogleStreetView ================ The GoogleStreetView Service provides access to the Google Street View Image API For more information, check out https://developers.google.com/maps/documentation/streetview/intro Terms of use: https://developers.google.com/maps/terms .. toctree:: :maxdepth: 2 :titlesonly: :caption: RPC Categories RPCS ---- .. function:: GoogleStreetView.getInfo(latitude: Latitude, longitude: Longitude, fieldofview: BoundedNumber<1, 120>, heading: BoundedNumber<0, 360>, pitch: BoundedNumber<-90, 90>) Get Street View metadata of a location using coordinates. Status explanation: - ``OK`` - No errors occurred. - ``ZERO_RESULTS`` - No image could be found near the provided location. - ``NOT_FOUND`` - The location provided could not be found. **Arguments:** - ``latitude: Latitude`` (`Latitude `__) - Latitude coordinate of location - ``longitude: Longitude`` (`Longitude `__) - Longitude coordinate of location - ``fieldofview: BoundedNumber<1, 120>`` (`BoundedNumber `__) - Field of View of image, maximum of ``120`` - ``heading: BoundedNumber<0, 360>`` (`BoundedNumber `__) - Heading of view - ``pitch: BoundedNumber<-90, 90>`` (`BoundedNumber `__) - Pitch of view, ``90`` to point up, ``-90`` to point down **Returns:** ``Object`` (`Object `__) - Metadata information about the requested Street View. .. function:: GoogleStreetView.getInfoFromAddress(location: String, fieldofview: BoundedNumber<1, 120>, heading: BoundedNumber<0, 360>, pitch: BoundedNumber<-90, 90>) Get Street View metadata of a location using a location query. Status explanation: - ``OK`` - No errors occurred. - ``ZERO_RESULTS`` - No image could be found near the provided location. - ``NOT_FOUND`` - The location provided could not be found. **Arguments:** - ``location: String`` (`String `__) - Address or Name of location - ``fieldofview: BoundedNumber<1, 120>`` (`BoundedNumber `__) - Field of View of image, maximum of ``120`` - ``heading: BoundedNumber<0, 360>`` (`BoundedNumber `__) - Heading of view - ``pitch: BoundedNumber<-90, 90>`` (`BoundedNumber `__) - Pitch of view, ``90`` to point up, ``-90`` to point down **Returns:** ``Object`` (`Object `__) - Metadata information about the requested Street View. .. function:: GoogleStreetView.getView(latitude: Latitude, longitude: Longitude, width: BoundedNumber<1, 2000>, height: BoundedNumber<1, 2000>, fieldofview: BoundedNumber<1, 120>, heading: BoundedNumber<0, 360>, pitch: BoundedNumber<-90, 90>) Get Street View image of a location using coordinates **Arguments:** - ``latitude: Latitude`` (`Latitude `__) - Latitude coordinate of location - ``longitude: Longitude`` (`Longitude `__) - Longitude coordinate of location - ``width: BoundedNumber<1, 2000>`` (`BoundedNumber `__) - Width of image - ``height: BoundedNumber<1, 2000>`` (`BoundedNumber `__) - Height of image - ``fieldofview: BoundedNumber<1, 120>`` (`BoundedNumber `__) - Field of View of image, maximum of ``120`` - ``heading: BoundedNumber<0, 360>`` (`BoundedNumber `__) - Heading of view - ``pitch: BoundedNumber<-90, 90>`` (`BoundedNumber `__) - Pitch of view, ``90`` to point up, ``-90`` to point down **Returns:** ``Image`` (`Image `__) - Image of requested location with specified size and orientation .. function:: GoogleStreetView.getViewFromAddress(location: String, width: BoundedNumber<1, 2000>, height: BoundedNumber<1, 2000>, fieldofview: BoundedNumber<1, 120>, heading: BoundedNumber<0, 360>, pitch: BoundedNumber<-90, 90>) Get Street View image of a location from a location string **Arguments:** - ``location: String`` (`String `__) - Address or Name of location - ``width: BoundedNumber<1, 2000>`` (`BoundedNumber `__) - Width of image - ``height: BoundedNumber<1, 2000>`` (`BoundedNumber `__) - Height of image - ``fieldofview: BoundedNumber<1, 120>`` (`BoundedNumber `__) - Field of View of image, maximum of ``120`` - ``heading: BoundedNumber<0, 360>`` (`BoundedNumber `__) - Heading of view - ``pitch: BoundedNumber<-90, 90>`` (`BoundedNumber `__) - Pitch of view, ``90`` to point up, ``-90`` to point down **Returns:** ``Image`` (`Image `__) - Image of requested location with specified size and orientation .. function:: GoogleStreetView.isAvailable(latitude: Latitude, longitude: Longitude, fieldofview: BoundedNumber<1, 120>, heading: BoundedNumber<0, 360>, pitch: BoundedNumber<-90, 90>) Check for availability of imagery at a location using coordinates **Arguments:** - ``latitude: Latitude`` (`Latitude `__) - Latitude coordinate of location - ``longitude: Longitude`` (`Longitude `__) - Longitude coordinate of location - ``fieldofview: BoundedNumber<1, 120>`` (`BoundedNumber `__) - Field of View of image, maximum of ``120`` - ``heading: BoundedNumber<0, 360>`` (`BoundedNumber `__) - Heading of view - ``pitch: BoundedNumber<-90, 90>`` (`BoundedNumber `__) - Pitch of view, ``90`` to point up, ``-90`` to point down **Returns:** ``Boolean`` (`Boolean `__) - ``true`` if imagery is available .. function:: GoogleStreetView.isAvailableFromAddress(location: String, fieldofview: BoundedNumber<1, 120>, heading: BoundedNumber<0, 360>, pitch: BoundedNumber<-90, 90>) Check for availability of imagery at a location using an address **Arguments:** - ``location: String`` (`String `__) - Address or Name of location - ``fieldofview: BoundedNumber<1, 120>`` (`BoundedNumber `__) - Field of View of image, maximum of ``120`` - ``heading: BoundedNumber<0, 360>`` (`BoundedNumber `__) - Heading of view - ``pitch: BoundedNumber<-90, 90>`` (`BoundedNumber `__) - Pitch of view, ``90`` to point up, ``-90`` to point down **Returns:** ``Boolean`` (`Boolean `__) - ``true`` if imagery is available