Skip to content

Commit

Permalink
Merge pull request #2156 from ProjectSidewalk/2085-maps-add-polygon-o…
Browse files Browse the repository at this point in the history
…utline

#2085 Add dark polygon outline and gray overlay to neighborhoods
  • Loading branch information
misaugstad authored Jul 1, 2020
2 parents b062edd + bcb04d0 commit 894a301
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions public/javascripts/Admin/src/Admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ function Admin(_, $, c3, turf, difficultRegionIds) {
function initializeNeighborhoodPolygons(map) {
var neighborhoodPolygonStyle = {
color: '#888',
weight: 1,
opacity: 0.25,
fillColor: "#ccc",
weight: 2,
opacity: 0.80,
fillColor: "#808080",
fillOpacity: 0.1
},
layers = [],
Expand Down
6 changes: 3 additions & 3 deletions public/javascripts/LabelMap.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ function LabelMap(_, $) {
function initializeNeighborhoodPolygons(map) {
var neighborhoodPolygonStyle = {
color: '#888',
weight: 1,
opacity: 0.25,
fillColor: "#ccc",
weight: 2,
opacity: 0.80,
fillColor: "#808080",
fillOpacity: 0.1
},
layers = [],
Expand Down
6 changes: 3 additions & 3 deletions public/javascripts/Progress/src/Progress.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ function Progress (_, $, c3, L, role, difficultRegionIds) {

var neighborhoodPolygonStyle = {
color: '#888',
weight: 1,
opacity: 0.25,
fillColor: "#ccc",
weight: 2,
opacity: 0.80,
fillColor: "#808080",
fillOpacity: 0.1
},
layers = [],
Expand Down

0 comments on commit 894a301

Please sign in to comment.