-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from SpeciesFileGroup/development
Add custom opacity for shapes and markers
- Loading branch information
Showing
10 changed files
with
18 additions
and
10 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
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 |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| export const AssertedDistribution = { | ||
| className: 'bg-map-asserted bg-opacity-50 rounded-full', | ||
| className: 'bg-map-asserted rounded-full map-point-marker', | ||
| iconSize: [8, 8], | ||
| iconAnchor: [4, 4] | ||
| } |
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 |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| export const CollectionObject = { | ||
| className: 'bg-map-collection-object bg-opacity-50 rounded-full', | ||
| className: 'bg-map-collection-object rounded-full map-point-marker', | ||
| iconSize: [8, 8], | ||
| iconAnchor: [4, 4] | ||
| } |
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 |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| export const Georeference = { | ||
| className: 'bg-map-georeference bg-opacity-50 rounded-full', | ||
| className: 'bg-map-georeference rounded-full map-point-marker', | ||
| iconSize: [8, 8], | ||
| iconAnchor: [4, 4] | ||
| } |
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 |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| export const TypeMaterial = { | ||
| className: 'bg-map-type-material bg-opacity-50 rounded-full', | ||
| className: 'bg-map-type-material map-point-marker rounded-full', | ||
| iconSize: [8, 8], | ||
| iconAnchor: [4, 4] | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| export const CollectionObject = { | ||
| color: `rgb(var(--color-map-collection-object))`, | ||
| weight: 1, | ||
| fillOpacity: 0.25 | ||
| fillOpacity: 'var(--color-map-shape-opacity)' | ||
| } |
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 |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| export const TypeMaterial = { | ||
| color: `rgb(var(--color-map-type-material))`, | ||
| weight: 1, | ||
| fillOpacity: 0.25 | ||
| fillOpacity: 'var(--color-map-shape-opacity)' | ||
| } |