react 传单层控制卫星视图

react leaflet -layer control -satellite view

我想在我的 React 项目中使用传单地图,我想添加一个图层控件,用户可以在其中切换街景和卫星视图。 我正在尝试使用 google 卫星视图,但它似乎不起作用。

这是我的代码

function App() {
  
  return (
    <div className="App">
      <MapContainer center={[40.44695, -345.23437]} zoom={2}>
        <LayersControl>
          <BaseLayer checked name="OpenStreetMap">
            <TileLayer
              url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
              attribution='&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
            />
          </BaseLayer>

          <BaseLayer name="Satellite View">
            <TileLayer
                url='https://{s}.google.com/vt/lyrs=s&x={x}&y={y}&z={z}'
                maxZoom= {20}
              />
            
          </BaseLayer>
        </LayersControl>
      </MapContainer>
    </div>
  );
}

export default App;

Satellite View

非常感谢

您用于 Google 地图的图块 url 不存在:

https://{s}.google.com/vt/lyrs=s&x={x}&y={y}&z={z}

来自 Leaflet 文档:

{s} means one of the available subdomains (used sequentially to help with browser parallel requests per domain limitation; subdomain values are specified in options; a, b or c by default, can be omitted), {z} — zoom level, {x} and {y} — tile coordinates. {r} can be used to add "@2x" to the URL to load retina tiles.

您请求的 url 正在使用默认的子域 abc,它们都已损坏:

看起来正确的子域是 mt1mt2mt3。您可以使用 subdomains 属性指定它们:

<TileLayer
   url='https://{s}.google.com/vt/lyrs=s&x={x}&y={y}&z={z}'
   maxZoom= {20}
   subdomains={['mt1','mt2','mt3']}
/>

https://mt1.google.com/vt/lyrs=s&x=1&y=1&z=1