-
Notifications
You must be signed in to change notification settings - Fork 796
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
Fixed: Request GeoJSON by default for feature services 1376 #1403
base: master
Are you sure you want to change the base?
Conversation
@DoiMayank what issue is this addressing? If this is addressing a bug, can you please provide a replication case for the bug. Thanks! |
@gavinr-maps This PR addresses the performance issues discussed in #1372 and #1373. The main problem comes from requesting features before confirming if the service supports GeoJSON. This causes unnecessary overhead because browsers have to convert the data to GeoJSON when the service could handle it directly. The solution is to make isModern the default for feature services since GeoJSON output has been supported in ArcGIS Server starting with version 10.4, which was deprecated in February 2022. By doing this, we avoid the extra processing on the client side and take advantage of the service’s capability to return GeoJSON directly, improving overall performance. |
@DoiMayank ok, thanks. So is the replication case in #1373 (copied below) the best test of this fix or something else? |
@gavinr-maps I believe the solution proposed in #1376 is the best fix for this issue. I have implemented it in this PR, and @patrickarlt was also leaning in this direction. |
Ok, thanks. I'll discuss with Patrick the best way to test this in the context of #1376. |
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.
@DoiMayank I think this might need some adjustments. In order to trigger the isModern
behavior down in the service you'll need to set isModern
to true
when the service is created in https://github.com/Esri/esri-leaflet/blob/master/src/Layers/FeatureLayer/FeatureManager.js#L40. To do this you'll need to set isModern: true
in the default options in https://github.com/Esri/esri-leaflet/blob/master/src/Layers/FeatureLayer/FeatureManager.js#L17-L28
After this change isModern
will default to true
everywhere a`nd will never be undefined Which should simplify most of your remaining codi because we no longer even need to check with the service if it supports GeoJSON or not. We assume it supports GeoJSON unless the user explictly tells us it does not.
If we want to resolve the potential performance issues in #1373 then we need to know ahead of time if the service supports GeoJSON which we can reasonably assume it does. Otherwise we have to wait for the metadata call before requesting any features which would be a major rewrite of FeatureManager
.
Another interesting observation from this is that for services that do not support GeoJSON the object id field bust be |
The following changes were made:
Updated the logic to default isModern to true for feature services.
Modified instances where isModern is used to ensure GeoJSON is requested by default.