SVG路径属性d例如以GeoJSON

时间:2014-02-21 11:08:29

标签: javascript json svg openlayers geojson

我在SVG中有很多几何形状。为了能够在Openlayers矢量图层中编辑它们,我想转换svg几何图形,例如到geoJSON格式,以便我可以轻松地将它们添加到Openlayers层。

FROM:

path xmlns="http://www.w3.org/2000/svg" id="G0W9Q7bC" d="M29.68 -30.10l-12.94 9.61 220.96 157.25 67.98-166.86-276.00 .00"/>

path xmlns="http://www.w3.org/2000/svg" id="G0W9Q7bA" d="M1223.26 349.19l-167.71 93.84 265.54 117.80-70.46 71.27 145.87 .00 .00-53.18-173.24-229.73"/>

path xmlns="http://www.w3.org/2000/svg" id="G0W9Q7bz_0" d="M1281.16 265.33l .00-111.81 115.34 .00M1396.50 265.33l-115.34 .00"/>

TO:

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "properties": {
      },
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              568420.74334458,
              121173.52026851001
            ],
            [
              568420.74334458,
              135550.45067237
            ],
            [
              598372.6816859602,
              135550.45067237
            ],
            [
              598372.6816859602,
              121173.52026851001
            ],
            [
              568420.74334458,
              121173.52026851001
            ]
          ]
        ]
      }
    }
  ]
}

是否有可以处理此问题的js框架?

1 个答案:

答案 0 :(得分:0)

也许您不需要使用OpenLayers。您可以使用d3绘制地图。 d3还有lot of methods,可以帮助您进行转换。