Skip to content

Commit

Permalink
fix overlay error
Browse files Browse the repository at this point in the history
  • Loading branch information
gisma committed Mar 25, 2023
1 parent a2843bc commit e6033f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions inst/htmlwidgets/vecDraw.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,15 +189,15 @@ HTMLWidgets.widget({
var polyLayer = geojsonLayer = L.geoJson(jsondata, {
style: function(feature) {
return {
color: "black"
color: "gray"
};
},
pointToLayer: function(feature, latlng) {
return new L.CircleMarker(latlng, {
radius: 3,
weight: 0.5,
fillOpacity: 0.7,
fillColor: "magenta"
weight: 0.25,
fillOpacity: 0.35,
fillColor: "orange"

});
}
Expand Down

0 comments on commit e6033f5

Please sign in to comment.