Bug ID Number |
BUG-000112442 |
Submitted | March 15, 2018 |
Last Modified | June 5, 2024 |
Applies to | ArcGIS Runtime SDK |
Version found | 100.2.1 |
Operating System | Windows OS |
Operating System Version | 10.0 64 Bit |
Status | Non-Reproducible
This issue was not reproducible when tested by the development team. Issues may be given this status when they cannot be reproduced or are no longer relevant in a development version of the software, but a specific fix was not installed to address the issue. The issue's Additional Information section may contain further explanation.
|
Additional Information
The code did not set both OffsetX and OffsetY properties. Once these properties are set to a value of 30 (half the set image width/height) the pushpin point location is consistent with the address location returned by other geocoding engine/services.
```
campsiteSymbol.OffsetX = 30;
campsiteSymbol.OffsetY = 30;
```
Workaround
The following is a potential workaround for the issue:
- Review the source data for the locator. The "fromleft" "toleft" and "fromright" "toright" were the same on the street where the address point was located.
- Edit the attributes such that the fromleft/fromright were set to the same value and the toleft/toright were set to the same value.
- Rebuild the locator. Once the locator was rebuilt, run the application again, the reverse geocoding and the address is correct.
Steps to Reproduce