Good evening!
We are building a .NET MAUI app using version 200.2.0 of the Maps SDK, and we're experiencing an issue with the MapView not displaying all features for a particular FeatureLayer that we've added to the map. At full extent, it only shows the first feature (the one added most recently to the database). When we zoom into other areas of the map where we expect to see other features, it will display just a single feature at that location.
We have a separate WPF app that uses the same FeatureLayer, and a slightly older version of the Maps SDK (200.0.0) and it is able to display all of features correctly. In addition, we have the same FeatureLayer hosted in an old environment running ArcGIS Server 10.71, and if I add this to the MAUI app it works fine.
After much trial and error, I found that if I set the FeatureLayer's TilingMode property to Disabled, then all features are displayed correctly in the MAUI app.
Is there something we need to do differently when publishing this FeatureLayer from ArcPro to ArcGIS Server 11.1 for this to work without setting the TilingMode?
Also, we initialize our MapView using a config JSON file we've built (by calling the Map.FromJson method). To set the TilingMode, I was thinking I could add a parameter to the that section of the FeatureLayer's JSON, something like "tilingMode": 1, or "tilingMode": "disabled" but this doesn't seem to work. In fact, the TilingMode doesn't even show up in the JSON if I use the Map.ToJson() method so I'm guessing it's not part of the de/serialization. Can this be added?
Thanks in advance!
-David