{"id":13748593,"url":"https://github.com/ihsanbal/StreetView","last_synced_at":"2025-05-09T11:31:00.975Z","repository":{"id":144164588,"uuid":"48845750","full_name":"ihsanbal/StreetView","owner":"ihsanbal","description":" Google Street View Image API Android Library [DEPRECATED]","archived":false,"fork":false,"pushed_at":"2016-05-12T07:21:50.000Z","size":2967,"stargazers_count":44,"open_issues_count":1,"forks_count":9,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-11T20:06:15.811Z","etag":null,"topics":["android","api","google","google-street","streetview"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ihsanbal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2015-12-31T10:25:14.000Z","updated_at":"2021-08-06T08:53:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"56ea8366-1d0b-4992-9936-77614035a066","html_url":"https://github.com/ihsanbal/StreetView","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ihsanbal%2FStreetView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ihsanbal%2FStreetView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ihsanbal%2FStreetView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ihsanbal%2FStreetView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ihsanbal","download_url":"https://codeload.github.com/ihsanbal/StreetView/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253240350,"owners_count":21876593,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","api","google","google-street","streetview"],"created_at":"2024-08-03T07:00:44.913Z","updated_at":"2025-05-09T11:31:00.599Z","avatar_url":"https://github.com/ihsanbal.png","language":"Java","funding_links":[],"categories":["Java"],"sub_categories":[],"readme":"StreetView\n=======\nGoogle Street View Image API Android Library - \nStreetView use the [Retrofit](https://github.com/square/retrofit) \n\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://lh3.googleusercontent.com/50-i3khy6z44n6xQsiJKx6WqLWK4zeb6IyXJYW2qZJGBE_2QvWSI5an09m-H7WgMlRqQ=w300-rw\" alt=\"Google Street View\" height=\"240\" width=\"240\"/\u003e\n\u003c/p\u003e\n\n[![License](http://img.shields.io/badge/License-Apache%202-brightgreen.svg?style=flat-square)](https://github.com/ihsanbal/StreetView/blob/master/LICENSE)\n[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-StreetView-green.svg?style=flat-square)](http://android-arsenal.com/details/1/2972)\n[![API](https://img.shields.io/badge/API-9%2B-brightgreen.svg?style=flat-square)](https://android-arsenal.com/api?level=9)\n[![Version](https://img.shields.io/badge/Version-2.0.0-orange.svg?style=flat-square)](https://github.com/ihsanbal/StreetView/releases/tag/2.0.0)\n[![Release](https://img.shields.io/github/release/ihsanbal/StreetView.svg?style=flat-square\u0026label=Release)](https://jitpack.io/#ihsanbal/StreetView)\n\nUsage\n--------\n\n```java\n\nStreetView streetView = new StreetView.Builder(\"ApiKey\")\n            .pitch(\"-0.76\")\n            .heading(\"80.0\")\n            .size(\"600x400\")\n            .fov(\"90\")\n            .build();\n                            \nstreetView.getStreetView(41.0421119, 29.0379787, new CallBack() {\n    @Override\n    public void onResponse(Response\u003cResponseBody\u003e response, Retrofit retrofit, Bitmap bitmapStreetView) {\n        //TODO : Stream image from response or use bitmapStreetView bitmap\n    }\n                         \n    @Override\n    public void onFailure(Throwable t) {\n        t.printStackTrace();\n    }\n});\n\n```\n\nUpdate app build.gradle with\n```\next {\n    retrofitLastLibVersion = \"2.0.0-beta2\" //Retrofit last version\n}\n```\n\nDownload\n--------\n\nDownload [the latest AAR][2] or grab via Gradle:\n```groovy\nrepositories {\n\t    maven {\n\t        url \"https://jitpack.io\"\n\t    }\n\t}\n\t\ndependencies {\n\t         compile 'com.github.ihsanbal:StreetView:2.0.0'\n\t}\n```\nor Maven:\n```xml\n\u003crepository\u003e\n   \u003cid\u003ejitpack.io\u003c/id\u003e\n   \u003curl\u003ehttps://jitpack.io\u003c/url\u003e\n\u003c/repository\u003e\n\n\u003cdependency\u003e\n\t    \u003cgroupId\u003ecom.github.ihsanbal\u003c/groupId\u003e\n\t    \u003cartifactId\u003eStreetView\u003c/artifactId\u003e\n\t    \u003cversion\u003e2.0.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n##[Screenshot](https://github.com/ihsanbal/StreetView/blob/master/images/device-istanbul_view.png)\n\nPic form [istanbul](https://www.google.com.tr/maps/place/%C4%B0stanbul/@41.02881,28.946502,3a,75y,90t/data=!3m8!1e2!3m6!1s87258476!2e1!3e10!6s%2F%2Flh6.googleusercontent.com%2Fproxy%2FJOnyZ62VmmGhlqtu5FwscwAxSc9rCB0ptWdxKyF47Cs9wpPRZ6U8rfLgweSv3eU8sZsKK-9SOGISndy3eyX44SbQwBSC-w%3Dw139-h86!7i4704!8i2900!4m2!3m1!1s0x14caa7040068086b:0xe1ccfe98bc01b0d0!6m1!1e1?hl=tr)\n\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://github.com/ihsanbal/StreetView/blob/master/images/device-istanbul_view.png\" alt=\"İSTANBUL\" /\u003e\n\u003c/p\u003e\n\nKnow More About Street View Image API\n-------------------------------------\n\u003e* [Developer's Guide](https://developers.google.com/maps/documentation/streetview/intro)\n\n\u003e* [Get A Key And Signature](https://developers.google.com/maps/documentation/streetview/intro)\n\n\u003e* [Usage Limits](https://developers.google.com/maps/documentation/streetview/usage-limits)\n\n\nLicence\n--------------\nCopyright [2015]() [İHSAN BAL](https://github.com/ihsanbal)\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\nAuthor\n--------------\n[İHSAN BAL](https://github.com/ihsanbal)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fihsanbal%2FStreetView","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fihsanbal%2FStreetView","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fihsanbal%2FStreetView/lists"}