After updating to the 2018.3.910-release the markers on the map seem to be placed quite a bit off from where I clicked with the mouse.
(Attatched files show location of mouse click with a small red dot)
Both the 2018.3.910 release and the 2019.1.215 release causes the same error, but when i go back to 2017.1.228 everything seems to be OK.
Any idea on what can be done?
JavaScript for placing markers:
<script type="text/javascript">
function SetRadMapMarker(eventArgs)
{
eventArgs.sender.markers.add(
{
location: eventArgs.location,
});
}
</script>
RadMap
<telerik:RadMap ID="RadMap1" runat="server" Zoom="17">
<CenterSettings Latitude="42.650613" Longitude="23.379025"/>
<LayersCollection>
<telerik:MapLayer Type="Tile" Subdomains="a,b,c"
UrlTemplate="https://#= subdomain #.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png"
Attribution="© <a href='http://osm.org/copyright' title='OpenStreetMap contributors' target='_blank'>OpenStreetMap contributors</a>.">
</telerik:MapLayer>
</LayersCollection>
</telerik:RadMap>