我在我的網絡服務中使用leaflet
地圖,但未正確加載。實際上,底部部分未加載。傳單地圖加載不正確
如何解決?我只是用這個代碼:
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);