-
Notifications
You must be signed in to change notification settings - Fork 376
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
Tile ArcGis FeatureServer requests #7370
Open
nf-s
wants to merge
30
commits into
main
Choose a base branch
from
tile-arcgis-featureserver
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+3,581
−584
Open
Changes from 23 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
28f942a
First version of arcgis feature server tiling
nf-s 4753d1b
Fix arg
nf-s f1fd5bb
Add basic circle symbolizer to arcgis tiling
nf-s b6e59e3
Add request to arcgis image server imagery provider
nf-s 257a067
ArcGis feature tiling protomaps styling working
nf-s cade27e
Reduce protomaps buffer and add buffer to arcgis pbf source
nf-s d97b121
Merge remote-tracking branch 'origin/main' into tile-arcgis-featurese…
nf-s 617067b
fix recomputed style fn
nf-s a4b4877
Add dashed line support to OutlineStyleTraits, and add Esri line symb…
nf-s 2d23761
Add feature server min scale and "open in ArcGis web viewer" button
nf-s 505b4f2
First version of feature picking
nf-s d8ff521
Remove clg, and remove geom from feature picking requests
nf-s 1463372
Add radius to tableStyleToProtomaps
nf-s a1daec0
Fix FeatureInfoUrlTemplateMixin reactivity
nf-s 447d661
FeatureServerCatalogItem: Add MinMaxLevelMixin (for tiling), add warn…
nf-s 474008c
Add point style size for ProtomapsImageryProvider mapItems
nf-s 269b7af
Merge branch 'upgrade-protomaps-leaflet' into tile-arcgis-featureserver
nf-s d3dd21c
fix type
nf-s 00a9a01
Merge remote-tracking branch 'origin/main' into tile-arcgis-featurese…
nf-s f5d2959
Add some changes, remove showOpenInArcGisWebViewer and add objectIdFi…
nf-s 7501ead
Add docs, fix some bugs and start adding tests
nf-s e66e1ce
Add basic tiled feature server tests
nf-s 9a4d7a5
Add arcgisfeatureserver minmax level test
nf-s b7e5b42
clean up
nf-s d582bc2
Fix buildEsriJson throwing error inside get mapItems
nf-s 5ba5130
Fix expand error
nf-s f59eea3
Address feedback and fix geojson multipolygon bug
nf-s ff12ed4
Fix error message
nf-s dac707d
fix changes
nf-s a73f22e
Fix geojson source bbox bug + add test
nf-s File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,7 +1,6 @@ | ||
import Color from "terriajs-cesium/Source/Core/Color"; | ||
import JsonValue from "../../Core/Json"; | ||
|
||
export default abstract class ColorMap { | ||
abstract mapValueToColor( | ||
value: string | number | null | undefined | ||
): Readonly<Color>; | ||
abstract mapValueToColor(value: JsonValue | undefined): Readonly<Color>; | ||
} |
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doubt: is this change required? Most implementations of
ColorMap
assumes the param to bestring | ...
. Also theJsonValue
imported here comes fromprotomap-leaflet