-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Selecting multiple areas reflects correctly on the map sometimes
- Loading branch information
1 parent
b7f2087
commit ea103fe
Showing
5 changed files
with
80 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
const comparisonSelectedLayers = { | ||
fill: { | ||
id: 'comparison-selected-fill', | ||
type: 'fill', | ||
source: 'comparison-selected-lot', | ||
paint: { | ||
'fill-opacity': 0.6, | ||
'fill-color': 'rgba(0, 20, 130, 1)', | ||
}, | ||
}, | ||
line: { | ||
id: 'comparison-selected-line', | ||
type: 'line', | ||
source: 'comparison-selected-lot', | ||
layout: { | ||
'line-cap': 'round', | ||
}, | ||
paint: { | ||
'line-opacity': 0.9, | ||
'line-color': 'rgba(0, 10, 90, 1)', | ||
'line-width': { | ||
stops: [ | ||
[13, 1.5], | ||
[15, 8], | ||
], | ||
}, | ||
'line-dasharray': [2, 1.5], | ||
}, | ||
}, | ||
}; | ||
|
||
export default comparisonSelectedLayers; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters