Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2404 differentiate roads and regions #2470

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ivy cached data file for com.google.code.findbugs#jsr305;[1.3, 1.4)
#Tue Jan 12 20:40:47 UTC 2021
resolved.time=1610484047427
#Sun Feb 21 17:00:01 UTC 2021
resolved.time=1613926801226
resolved.revision=1.3.9
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ivy cached data file for com.google.inject.extensions#guice-multibindings;4.0-beta5
#Tue Jan 12 20:40:47 UTC 2021
#Sun Feb 21 17:00:01 UTC 2021
artifact\:guice-multibindings\#jar\#jar\#-1382091433.location=https\://repo1.maven.org/maven2/com/google/inject/extensions/guice-multibindings/4.0-beta5/guice-multibindings-4.0-beta5.jar
artifact\:guice-multibindings\#pom.original\#pom\#270471229.is-local=false
artifact\:guice-multibindings\#jar\#jar\#-1382091433.is-local=false
Expand Down
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"files.watcherExclude": {
"**/target": true
}
}
2 changes: 1 addition & 1 deletion public/javascripts/Choropleths/MapUtilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/
function toggleLayers(label, checkboxId, sliderId, map, allLayers) {
if (document.getElementById(checkboxId).checked) {
if(checkboxId === 'occlusion'){
if(checkboxId === 'occlusion'){ a
for (let i = 0; i < allLayers[label].length; i++) {
if (!map.hasLayer(allLayers[label][i])) {
map.addLayer(allLayers[label][i]);
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 @@ -2,10 +2,10 @@ function Progress (_, $, difficultRegionIds, userRole) {
var params = {
popupType: 'completionRate',
neighborhoodPolygonStyle: {
color: '#888',
color: '#656565',
weight: 2,
opacity: 0.80,
fillColor: '#808080',
fillColor: '#606060',
fillOpacity: 0.1
},
mouseoverStyle: {
Expand All @@ -14,7 +14,7 @@ function Progress (_, $, difficultRegionIds, userRole) {
weight: 3
},
mouseoutStyle: {
color: '#888',
color: '#656565',
opacity: 0.8,
weight: 2
},
Expand Down