All Projects β†’ bafolts β†’ google-streetview-images

bafolts / google-streetview-images

Licence: Unlicense license
Pull google streetview panoramic images along a route.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to google-streetview-images

google maps
πŸ—Ί An unofficial Google Maps Platform client library for the Rust programming language.
Stars: ✭ 40 (-11.11%)
Mutual labels:  maps, google-maps, google-api
GoogleMapsHelper
An easy to integrate Model Based Google Maps Helper (SVHTTPClient, AFNetworking) That lets you Geo Code , Reverse Geocode, Get Directions , Places Autocomplete.
Stars: ✭ 21 (-53.33%)
Mutual labels:  maps, google-maps
ember-google-maps
A friendly Ember addon for working with Google Maps.
Stars: ✭ 93 (+106.67%)
Mutual labels:  maps, google-maps
mapus
A map tool with real-time collaboration πŸ—ΊοΈ
Stars: ✭ 2,687 (+5871.11%)
Mutual labels:  maps, google-maps
svelte-mapbox
MapBox Map and Autocomplete components for Svelte (or Vanilla JS)
Stars: ✭ 267 (+493.33%)
Mutual labels:  maps, google-maps
svelte-googlemaps
Svelte Google Maps Components
Stars: ✭ 62 (+37.78%)
Mutual labels:  maps, google-maps
cMaps
🎨 Control options and customization of the Google Maps colors, just 1,7 KB.
Stars: ✭ 14 (-68.89%)
Mutual labels:  maps, google-api
React Native Open Maps
πŸ—Ί A simple react-native library to perform cross-platform map actions (Google or Apple Maps)
Stars: ✭ 192 (+326.67%)
Mutual labels:  maps, google-maps
activeadmin-latlng
Active Admin plugin for setting up latitude and longitude
Stars: ✭ 34 (-24.44%)
Mutual labels:  maps, google-maps
GeoGuess
GeoGuess is an open-source geography game with Google Map StreetView. You can play solo or with your friends simultaneously.
Stars: ✭ 174 (+286.67%)
Mutual labels:  google-maps, streetview
google streetview
A command line tool and module for Google Street View Image API
Stars: ✭ 77 (+71.11%)
Mutual labels:  streetview, panorama
HealthCare-Scan-Nearby-Hospital-Locations
I developed this android application to help beginner developers to know how to use Google Maps API and how to convert JSON data into Java Object.
Stars: ✭ 23 (-48.89%)
Mutual labels:  maps, google-maps
geojson-editor
A modified version of Googles Simple GeoJSON Editor
Stars: ✭ 43 (-4.44%)
Mutual labels:  maps, google-maps
Gmapsfx
Java API for using Google Maps within a JavaFX application.
Stars: ✭ 233 (+417.78%)
Mutual labels:  maps, google-maps
map-kit-android
An extensive framework for map development in Android.
Stars: ✭ 44 (-2.22%)
Mutual labels:  maps, google-maps
js-markerclusterer
Create and manage clusters for large amounts of markers
Stars: ✭ 92 (+104.44%)
Mutual labels:  maps, google-maps
Google Maps
Google Maps Web Services API wrapper for .NET
Stars: ✭ 171 (+280%)
Mutual labels:  maps, google-maps
Airbnb Android Google Map View
This is a sample Android Application which has Google Map view similar to what AirBnb Android Application. Moving Markers like Uber/Ola. Custom Google Search for places. Recycler view with Animations added.
Stars: ✭ 175 (+288.89%)
Mutual labels:  maps, google-maps
trackanimation
Track Animation is a Python 2 and 3 library that provides an easy and user-adjustable way of creating visualizations from GPS data.
Stars: ✭ 74 (+64.44%)
Mutual labels:  maps, google-maps
locationestimatr.github.io
This is a game where you are put anywhere on earth, and you have to figure out where you are
Stars: ✭ 46 (+2.22%)
Mutual labels:  maps, streetview

google-streetview-images

Pull google streetview images along a route. With a provided origin and destination, the panorama streetview images from along that route will be downloaded sequentially.

There is a free quota of roughly 25,000 image requests per day, if using this tool in production you will most likely need to upgrade to a premium account. After you reach the image quota limit you will no longer pull images. If you enter in a very long route you can reach this limit quickly.

Sample Usage

function main() {
  new StreetViewImages({
      origin: document.getElementById("origin").value,
      destination: document.getElementById("destination").value,
      apiKey: document.getElementById("apiKey").value,
      onPanoLoaded: function (pano) {
          console.log(pano);
          document.body.appendChild(document.createElement("img"))
              .src = pano.panoUrl
      },
      onError: function (err) {
          console.log(err);
      },
      onComplete: function () {
          console.log("Done pulling images on route");
      }
  });
}

Usages in the wild

Google Maps Streetview Player

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].