如何将geoJson数据(具有2000多个坐标)导入传单地图?
这是geo json的简短示例

{
   "type": "FeatureCollection",
   "features": [
  {
    "type": "Feature",
    "geometry": {
       "type": "Point",
       "coordinates":  [ 44.8242557024,20.4048512901 ]
    },
    "properties": {
    }
  },
  {
    "type": "Feature",
    "geometry": {
       "type": "Point",
       "coordinates":  [ 44.8242557024,20.4048512901 ]
    },
    "properties": {
    }
  },...]


我尝试过的代码:

<!doctype html>
<html>
<head>
  <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.css" />
  <!--[if lte IE 8]>
     <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.ie.css" />
  <![endif]-->
  <style type="text/css">
    body {
      padding: 0;
      margin: 0;
    }

    html, body, #cmap {
      height: 100%;
    }

  </style>
  <script src="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.js"></script>
  <script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
</head>
<body>
  <div id="cmap"></div>
  <script>
  var cupcakeTiles = L.tileLayer('https://api.mapbox.com/v4/mapbox.emerald/page.html?access_token=cj5h2mqa63sc92srx3bu62e2j', {
    maxZoom: 18
  });

  $.getJSON("convertcsv.geojson", function(data) {
    var geojson = L.geoJson(data, {
      onEachFeature: function (feature, layer) {
        layer.bindPopup(feature.properties.name);cj5h2mqa63sc92srx3bu62e2j
      }
    });

var map = L.map('map', {
    center: [44, 20],
    zoom: 7
});

L.tileLayer('https://{s}.tiles.mapbox.com/v3/{id}/{z}/{x}/{y}.png', {
    id: 'examples.map-20v6611k'
}).addTo(map);

new L.GeoJSON(meta1nJson).addTo(map);
  });
  </script>
</body>
</html>


但是什么也没有发生,只是灰色的背景。我不确定错误在哪里(也许有多个错误),但是导入geojson数据和地图令牌可能存在错误。
我是这个的初学者。预先感谢。

最佳答案

您的代码中似乎有很多问题。首先,您的html中不存在ID为“ map”的元素,因此无法放置地图图层。您必须在以下代码中添加“ cmap”作为ID。

var map = L.map('cmap', {
   center: [44, 20],
   zoom: 7
});


同样,您的代码中似乎未定义meta1nJson,因此以下代码无法正常工作。

new L.GeoJSON(meta1nJson).addTo(map);


似乎已定义了cakecakeTiles图层,但从未将其添加到地图中。您在下面的代码中也有一个流浪字符串,应将其删除。

 $.getJSON("convertcsv.geojson", function(data) {
var geojson = L.geoJson(data, {
  onEachFeature: function (feature, layer) {
    layer.bindPopup(feature.properties.name); //cj5h2mqa63sc92srx3bu62e2j
  }
});

09-26 11:27