polysnapper icon indicating copy to clipboard operation
polysnapper copied to clipboard

Added currentpoly option

Open christianmeichtry opened this issue 10 years ago • 0 comments

Now you can edit an existing polygon instead of only creating new ones. Pass the polygon you want to edit as currentpoly

      SM = PolySnapper({
        map: map,
        marker: new google.maps.Marker(),
        threshold: 200,
        keyRequired: false,
        polygons: polygons,
        polystyle: new_polystyle,
        hidePOI: true,
        currentpoly: edit_polygon,
        onEnabled: function(){
          console.log("enabled")
        },
        onDisabled: function(){
          console.log("disabled")
        }
      });

christianmeichtry avatar Apr 29 '16 09:04 christianmeichtry