1

Mapstractionを使用して Polygon をドラッグする方法を見つけるのに苦労しています。しかし、これの例は見つかりません。

この場合、ポリゴンをドラッグするにはどうすればよいですか?

JS私が試したコード

// initialise the map with your choice of API
        var mapstraction = new mxn.MapstractionInteractive('mapstraction','openlayers');
        mapstraction.setCenterAndZoom(new mxn.LatLonPoint(40, -3),5);
        var latlon = new mxn.LatLonPoint(17.384225, 78.486586);
        mapstraction.setCenterAndZoom(latlon, 10);

          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);
          mapstraction.addPolyline(polygon)
4

0 に答える 0