gpt4 book ai didi

jquery - 传单 map 无法正确加载

转载 作者:行者123 更新时间:2023-12-01 02:34:17 24 4
gpt4 key购买 nike

我在网络服务中使用传单 map ,但它无法正确加载。底部部分实际上并未加载。

如何解决?我只是使用这段代码:

var latlng = new L.LatLng(50.5, 30.51);

var map = new L.Map('map', {center: latlng, zoom: 15, layers: [cloudmade]});

var markers = new L.FeatureGroup();

var london = new L.LatLng(51.505, -0.09); // geographical point (Longitude and Latitude)
map.setView(london, 13).addLayer(cloudmade);

最佳答案

Error: cloudmade is not defined

您想从哪里获取 map ?您必须定义一个 URL,如本例所示:Leaflet Quick Start Guide .

在使用变量cloudmade之前插入此行(在获取您自己的 key 之后)。

var cloudmade = new L.TileLayer('http://{s}.tile.cloudmade.com/YOUR-API-KEY/997/256/{z}/{x}/{y}.png');

关于jquery - 传单 map 无法正确加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9190191/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com