Leaflet Map API with Google Satellite Layer

前端 未结 6 1986
刺人心
刺人心 2020-12-02 04:53

I\'m very interested in the Leaflet Map API.

However, I need to be able to use the Google Satellite Layer. I have not been able to find an example on how to add a Go

相关标签:
6条回答
  • 2020-12-02 05:36

    this repository contains few tile layers google and other and very useful other plugins: https://github.com/shramov/leaflet-plugins

    0 讨论(0)
  • 2020-12-02 05:36

    Google title layer with Traffic

    var googleTraffic = L.tileLayer('https://{s}.google.com/vt/lyrs=m@221097413,traffic&x={x}&y={y}&z={z}', {
            maxZoom: 20,
            minZoom: 2,
            subdomains: ['mt0', 'mt1', 'mt2', 'mt3'],
        });
    

    Please see their General Terms

    Hope someone helps this

    0 讨论(0)
  • 2020-12-02 05:50

    Leaflet has an official page for publishing all available plugins: http://leafletjs.com/plugins.html

    You will find plugins there for adding Google layers support to Leaflet.

    0 讨论(0)
  • 2020-12-02 05:56

    Alternative to Google Maps API for satellite layer: Leaflet.js with Esri World Imagery tiles

    <script>
    
        var map = L.map('map').setView([-41.2858, 174.78682], 14);
    
        var mapLink = '<a href="http://www.esri.com/">Esri</a>';
        var wholink = 'i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community';
    
        L.tileLayer(
            'http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}', {
            attribution: '&copy; '+mapLink+', '+wholink,
            maxZoom: 18,
            }).addTo(map);
    
    </script>
    
    0 讨论(0)
  • 2020-12-02 05:58

    There's a third-party plugin for it: Demo: http://psha.org.ru/leaflet/bel.html (switch to Google Maps with the switcher) Source: http://psha.org.ru/leaflet/Google.js

    0 讨论(0)
  • 2020-12-02 06:00

    You don't need a plugin or the Google API, you can add it as a XYZ tile layer.

    Streets

    googleStreets = L.tileLayer('http://{s}.google.com/vt/lyrs=m&x={x}&y={y}&z={z}',{
        maxZoom: 20,
        subdomains:['mt0','mt1','mt2','mt3']
    });
    

    Hybrid:

    googleHybrid = L.tileLayer('http://{s}.google.com/vt/lyrs=s,h&x={x}&y={y}&z={z}',{
        maxZoom: 20,
        subdomains:['mt0','mt1','mt2','mt3']
    });
    

    Satellite:

    googleSat = L.tileLayer('http://{s}.google.com/vt/lyrs=s&x={x}&y={y}&z={z}',{
        maxZoom: 20,
        subdomains:['mt0','mt1','mt2','mt3']
    });
    

    Terrain

    googleTerrain = L.tileLayer('http://{s}.google.com/vt/lyrs=p&x={x}&y={y}&z={z}',{
        maxZoom: 20,
        subdomains:['mt0','mt1','mt2','mt3']
    });
    
    
    Note the difference in the "lyrs" parameter in the URL:
    Hybrid: s,h;
    Satellite: s;
    Streets: m;
    Terrain: p;
    
    0 讨论(0)
提交回复
热议问题