UNPKG

leaflet-pegman

Version:

A Leaflet plugin that allows easy integration with the Google StreetView Service API

90 lines (71 loc) 3.5 kB
# leaflet-pegman.js [![NPM version](https://img.shields.io/npm/v/leaflet-pegman.svg?color=red)](https://www.npmjs.com/package/leaflet-pegman) [![License](https://img.shields.io/badge/license-GPL%203-blue.svg?style=flat)](LICENSE) A Leaflet plugin that allows easy integration with the Google StreetView Service API <p align="center"> <a href="https://raruto.github.io/leaflet-pegman/examples/leaflet-pegman.html"><img src="https://raruto.github.io/img/pegman-bio.png" alt="Pegman Bio" /></a> </p> --- _For a working example see one of the following demos:_ - [traditional loading](https://raruto.github.io/leaflet-pegman/examples/leaflet-pegman.html) - [lazy loading](https://raruto.github.io/leaflet-pegman/examples/leaflet-pegman-lazyLoading.html) - [detached panorama](https://raruto.github.io/leaflet-pegman/examples/leaflet-pegman-panoDiv.html) --- <blockquote> <p align="center"> <em>Initially based on the <a href="http://jsfiddle.net/pegues/a5mn1ogu/">work</a> of <strong>Daniel Pegues</strong></em> </p> </blockquote> --- ## How to use 1. **include CSS & JavaScript** ```html <head> ... <style> html, body, #map { height: 100%; width: 100%; padding: 0; margin: 0; } </style> <!-- Google Maps API --> <script src="https://maps.googleapis.com/maps/api/js?key=<INSERT_HERE_API_KEY>"></script> <!-- interact.js --> <script src="https://unpkg.com/interact.js@1.2.8/dist/interact.min.js"></script> <!-- Leaflet (JS/CSS) --> <link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css" /> <script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"></script> <!-- Leaflet-GoogleMutant --> <script src="https://unpkg.com/leaflet.gridlayer.googlemutant@0.10.0/Leaflet.GoogleMutant.js"></script> <!-- Leaflet-Pegman --> <link rel="stylesheet" href="https://unpkg.com/leaflet-pegman/@latest/leaflet-pegman.css" /> <script src="https://unpkg.com/leaflet-pegman/@latest/leaflet-pegman.js"></script> ... </head> ``` 2. **choose a div container used for the slippy map** ```html <body> ... <div id="map"></div> ... </body> ``` 3. **create your first simple “leaflet-pegman slippy map** ```html <script> var map = L.map('map'); map.setView(new L.LatLng(45, 9.5), 5); var OpenTopoMap = L.tileLayer('https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png', { maxZoom: 17, attribution: 'Map data: &copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>, <a href="http://viewfinderpanoramas.org">SRTM</a> | Map style: &copy; <a href="https://opentopomap.org">OpenTopoMap</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)', opacity: 0.90 }); OpenTopoMap.addTo(map); var pegmanControl = new L.Control.Pegman({ position: 'bottomright', // position of control inside the map theme: "leaflet-pegman-v3-small", // or "leaflet-pegman-v3-default" }); pegmanControl.addTo(map); </script> ``` _**NB** to be able to use the “pegman” (a.k.a. “Street View Control”) you **MUST** use a valid [Google Maps API Key](https://developers.google.com/maps/documentation/javascript/get-api-key)._ --- **Compatibile with:** leaflet@1.6.0, gmaps@3.34, leaflet-googlemutant@0.10.0, interactJS@1.2.9 --- **Contributors:** [Pegues](http://jsfiddle.net/user/pegues/fiddles/), [Raruto](https://github.com/Raruto/leaflet-google)