在Mapstraction地图中,需要绘制一个可编辑的多边形。
所以我尝试了example
但是,例如,多边形在调用函数href="javascript:mapstraction.activateEdition();"时是可编辑模式。

我已经尝试过了。没有成功。

我如何创建多边形,用户可以对其进行编辑,这也可能仅保留10个顶点。

JS代码

var polyPoint;
var polyPoints = []
//Adding polygon to map
    polyPoint = new mxn.LatLonPoint(17.447612 , 78.223686)
    polyPoints.push(polyPoint);
    polyPoint = new mxn.LatLonPoint(17.504593 , 78.306084)
    polyPoints.push(polyPoint);
    polyPoint = new mxn.LatLonPoint(17.471193 , 78.417320)
    polyPoints.push(polyPoint);
    polyPoint = new mxn.LatLonPoint(17.414201 , 78.470879)
    polyPoints.push(polyPoint);

    var polygon = new mxn.Polyline(polyPoints);
    polygon.setClosed(true);
    map.addPolyline(polygon)

//Adding event listeners to map
      mapstraction.markerChanged.addHandler(function(event,map,marker){
          alert('Marker moved to: '+marker.marker.location.lat+' , '+marker.marker.location.lon)})
      mapstraction.polylineChanged.addHandler(function(event,map,polyline){
          alert('Polyline modified: Now it has '+polyline.polyline.points.length+' vertices')})

最佳答案

该示例用于Mapstraction的idelab分支,因此您需要确保使用的是可从此处获得的版本:

https://github.com/idelab/mxn

我不确定idelab版本是否仍受支持,并且我认为OpenLayers API自最初开发以来就发生了变化,因此,如果您使用正确的版本,这可能就是您遇到问题的原因。

恐怕Mapstraction的主干版本不支持可编辑地图。主要是因为并非所有的地图提供程序都支持它,所以作为Mapstraction的一部分它的用处会减少。同样因为大多数人不需要它,所以很难证明将其添加到库中的努力是合理的。

如果您使用的是OpenLayers,并且不需要切换提供程序,则应考虑直接根据OpenLayers API进行编程。如果确实需要切换提供程序,则应联系idelab存储库(plopesc)的所有者,并检查其是否支持您的用例。

10-08 17:19