| Bug ID Number |
BUG-000097184 |
| Submitted | June 15, 2016 |
| Last Modified | June 5, 2024 |
| Applies to | ArcGIS for Server |
| Version found | 10.3.1 |
| Operating System | Windows OS |
| Operating System Version | 2012 R2 |
| Status | Known Limit
After review by the development team, it has been determined that this issue is related to a known limitation with the software that lies outside of Esri's control. The issue's Additional Information section may contain further explanation.
|
Additional Information
Set the constraints and passing in the lods using TileInfo.create().lods.
See below with test app:
https://jsbin.com/zuzicuwiyu/edit?html,output
var view = new MapView({
container: "viewDiv",
map: map,
constraints: {
lods: TileInfo.create().lods
}
});
Workaround
For the MapView, set constraints.snapToZoom = false (view.constraints.snapToZoom = false).
Steps to Reproduce