【问题标题】:How to add geojson data to Source and Layer Component of react-map-gl如何将 geojson 数据添加到 react-map-gl 的 Source 和 Layer 组件
【发布时间】:2020-11-03 08:36:34
【问题描述】:

我正在使用 react-map-gl 库来处理 mapbox。我想在地图上的某些数据点上创建一条线。地图渲染正常,但地图上没有显示线条。

Source link @Github with all description of the problem.

【问题讨论】:

    标签: reactjs mapbox react-map-gl


    【解决方案1】:

    坐标应该是 LineString 的二维数组。

    dataJS 应该是这样的

    const dataJS = {
      type: "Feature",
      properties: {},
      geometry: {
        type: "LineString",
        coordinates: [
          [-67.13734351262877, 45.137451890638886],
          [-66.96466, 44.8097],
          [-68.03252, 44.3252],
          [-69.06, 43.98],
          [-70.11617, 43.68405],
          [-70.64573401557249, 43.090083319667144],
          [-70.75102474636725, 43.08003225358635],
          [-70.79761105007827, 43.21973948828747],
          [-70.98176001655037, 43.36789581966826],
          [-70.94416541205806, 43.46633942318431],
          [-71.08482, 45.3052400000002],
          [-70.6600225491012, 45.46022288673396],
          [-70.30495378282376, 45.914794623389355],
          [-70.00014034695016, 46.69317088478567],
          [-69.23708614772835, 47.44777598732787],
          [-68.90478084987546, 47.184794623394396],
          [-68.23430497910454, 47.35462921812177],
          [-67.79035274928509, 47.066248887716995],
          [-67.79141211614706, 45.702585354182816],
          [-67.13734351262877, 45.137451890638886]
        ]
      }
    };
    

    【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2019-08-27
    • 2017-03-24
    • 2019-10-23
    • 2018-06-03
    • 1970-01-01
    • 1970-01-01
    • 2022-01-11
    • 1970-01-01
    相关资源
    最近更新 更多