首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >如何用单点+多边形在GeometryCollection中生成GeoJSON?

如何用单点+多边形在GeometryCollection中生成GeoJSON?
EN

Stack Overflow用户
提问于 2015-12-02 14:12:36
回答 2查看 19.5K关注 0票数 9

如何将点作为单一功能添加到多边形中?根据GeoJson规范,这被称为"GeometryCollection“。

“几何集合”的示例:

代码语言:javascript
复制
{ "type": "GeometryCollection",
"geometries": [
  { "type": "Point",
    "coordinates": [100.0, 0.0]
    },
  { "type": "LineString",
    "coordinates": [ [101.0, 0.0], [102.0, 1.0] ]
    }
 ]
}

我试图在多边形特性中添加一个点,但是我无法让它显示在mapbox地图上,因为我猜它是无效的GeoJson。

,有人知道做这件事的正确方式吗?web上没有太多的示例可供参考。

我的观点:[jsfilddle]

代码语言:javascript
复制
var myRegions = {
 "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "properties": {},
      "geometries": [
        {
            "type": "Point",
            "coordinates": [
            61.34765625,
            48.63290858589535
            ]
      },
        {
        "type": "Polygon",
        "coordinates": [
          [
            [
              59.94140624999999,
              50.65294336725709
            ],
            [
              54.931640625,
              50.90303283111257
            ],
            [
              51.943359375,
              51.04139389812637
            ],
            [
              50.9765625,
              48.19538740833338
            ],
            [
              52.55859375,
              46.46813299215554
            ],
            [
              52.998046875,
              43.8028187190472
            ],
            [
              54.4921875,
              42.391008609205045
            ],
            [
              57.041015625,
              43.29320031385282
            ],
            [
              59.8974609375,
              45.398449976304086
            ],
            [
              62.5341796875,
              44.08758502824516
            ],
            [
              65.6982421875,
              45.73685954736049
            ],
            [
              68.37890625,
              48.3416461723746
            ],
            [
              65.8740234375,
              49.18170338770663
            ],
            [
              63.720703125,
              49.97948776108648
            ],
            [
              63.80859374999999,
              52.348763181988076
            ],
            [
              61.4794921875,
              52.32191088594773
            ],
            [
              59.9853515625,
              51.86292391360244
            ],
            [
              61.9189453125,
              51.09662294502995
            ],
            [
              60.5126953125,
              50.51342652633956
            ],
            [
              59.94140624999999,
              50.65294336725709
            ]
          ]
        ]
      }
   ]
  }
 ]
};
EN

Stack Overflow用户

发布于 2015-12-02 14:59:06

正如在GeoJSON规范中所说的那样,对象恰好有一个 geometry成员,即几何对象 (或null)。

功能对象必须有一个名为"geometry"的成员。几何成员的值是上面定义的几何对象或JSON空值。

在可能的geometry中,您确实可以使用一个GeometryCollection,它必须有一个成员geometries,后者是一个其他几何图形的数组,比如点、多边形等,甚至还有另一个GeometryCollection。

几何集合必须有一个名为"geometries"的成员。与"geometries"对应的值是一个数组。这个数组中的每个元素都是一个GeoJSON几何对象。

因此,在您的情况下,您可以简单地执行以下操作:

代码语言:javascript
复制
var myRegions = {
  "type": "FeatureCollection",
  "features": [{
    "type": "Feature", // single feature
    "properties": {},
    "geometry": { // unique geometry member
      "type": "GeometryCollection", // the geometry can be a GeometryCollection
      "geometries": [ // unique geometries member
        { // each array item is a geometry object
          "type": "Point",
          "coordinates": [
            61.34765625,
            48.63290858589535
          ]
        },
        {
          "type": "Polygon",
          "coordinates": [
            [
              [
                59.94140624999999,
                50.65294336725709
              ],
              // more points…
              [
                59.94140624999999,
                50.65294336725709
              ]
            ]
          ]
        }
      ]
    }
  }]
};

更新的jsfiddle:http://jsfiddle.net/rh8ok5t8/18/

票数 15
EN
查看全部 2 条回答
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/34044893

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档