Unplanned
Last Updated: 27 Dec 2016 13:13 by ADMIN
MapPath shape doesn't support data binding on the level of the MapPathFigure and MapPathSegment in WPF.
This feature is implemented in the new visualization engine -Visualization layer and the bindable wrappers - PathView, PathVigureView, PathSegementView , etc.
Unplanned
Last Updated: 27 Dec 2016 13:24 by ADMIN
Map: DataTemplate is not applied correctly. On second click /zoom in/zoom out the items appear.
The issue is not reproducible with Visualization Layer.
Unplanned
Last Updated: 27 Dec 2016 11:57 by ADMIN
BirdsEye view doesn't work after trying to look at an area which does not contain birds eye imagery data

Steps for reproducing:
1. Zoom into area with no birds eye view imagery data. Enable Birds eye view. Verify that no tiles are loaded.
2. Change back to Road view, navigate to an area where you know there is bird's eye view imagery.
3. Zoom into the area. Enable Bird's Eye view a second time: The tiles are not loaded.
Unplanned
Last Updated: 27 Dec 2016 12:49 by ADMIN
When the custom map provider supports levels range other than 1 to 20 then it could affect to tiles downloading performance.
Unplanned
Last Updated: 30 Apr 2020 10:31 by ADMIN

The behavior can be observed with the following setups:

new WmsTiledProvider("http://4maps.geo-solutions.it/geoserver/osm/wms")

            {
                Layers = "osm",
                Version = "1.3.0",
                Projection = "CRS:84" // WGS84, 1.3.0 Standard compatible
            };

and 

new WmsTiledProvider("http://4maps.geo-solutions.it/geoserver/osm/wms")

            {
                Layers = "osm",
                Version = "1.1.0",
                Projection = "EPSG:4326" // WGS84, 1.1.0 Standard compatible
            };
Unplanned
Last Updated: 27 Dec 2016 12:59 by ADMIN
Map has 2 providers initially - BingMapProvider and Custom Provider A. Runtime we remove A and add B - other custom provider. As a result - the image from bingmapprovider (world continents) is not displayed. As a workaround, users need to clear all providers and then Add BingMapProvider then add provider B.
Unplanned
Last Updated: 27 Dec 2016 12:53 by ADMIN
Polyline object in VisualizationLayer is not updated if you clear its Points collection.

The expected behavior is that the Polyline is not visible on the Map.

As a workaround,  you can remove the PolylineData directly from the Layer.

this.layer.Items.Remove(polylineData);
Unplanned
Last Updated: 03 May 2019 16:50 by ADMIN
When you have two providers - BingMapProvider and custom TiledProvider - and the map source of the second provider (the custom one) is changed, the updated provider is drawn under the provider defined before it in the Providers collection (the BingMapProvider).

To work this around you can call the BingMapProvider's SetMapSource() method after the source of the custom provider is changed.

// set the custom provider source
bingMapProvider.SetMapSource(bingMapProvider.SupportedSources[0]);
Unplanned
Last Updated: 27 Dec 2016 13:16 by ADMIN
ADMIN
Created by: Petar Mladenov
Comments: 0
Category: Map
Type: Bug Report
1
In the KML file , Locations are separated witch commas instead of whitespaces , for example:

34.84161774,32.11002378,0,34.8416625,32.10999705,0

The RadMap produces "Input string is in icorrect format" exception. However, other tools read the kml file successfully.
Unplanned
Last Updated: 17 Jan 2017 16:10 by ADMIN
An OutOfMemmoryException is thrown under the following conditions:
1. The map displays its data using the VisualizationLayer populated with MapShapeData object.
2. The zoom level is changed to Neighborhood using the Zoom button from the map's navigation.
3. The zoom button is hovered

Note: The MapShapeData should be visible when the zoom is applied

The exception is not reproducible if the project's Platform is set to x64.

Since Q1 2016, the BitMapCaching of RadMap is turned off by default and the issue is not reproducible unless you turn the caching on.

Possible Workarounds:

 - the exception is not reproducible if the project's Platform is set to x64

-  double check that UseBitMapCahe property of the Visualizationlayer is set to False. When False, the issue is not reproducible.
Unplanned
Last Updated: 27 Dec 2016 13:02 by ADMIN
Concurreny issue - exception in PathGeometryData.GetScreeenGeometry() when the geometry is updated runtime.

Custom MapGeometryView which updates its GeometryData runtime. This leads to cocncurrency issue in VisualizationLayer and its shape processcing code. This leads to Exception in GetScreenGemetry() method of PathGeometryData.
Unplanned
Last Updated: 27 Dec 2016 12:20 by ADMIN
Width / Height of the MapEllipseView are bound to doubles from ViewModel.

Runtime change to 0 does not hide / remove the Ellipse from the Map.

This is a bug in the MapShapeBindableWrapper's Geometry update code. 

The workaround is to use the Visibility of the MapEllipseView in order to hide it.

Other workaround could be using FrameworkElements (Ellipse, Polyline, Rectangle) instead of BindableWrappers (MapEllipseView, MapPolylinerView, MapRectangleView).
Unplanned
Last Updated: 19 Jun 2017 11:20 by ADMIN
MiniMapWidth and MiniMapHeight have default values 250 and 200. If you use different values, for example 250 and 250, panning the RadMap can result in jumping the minimap - unexpected zoom in/out. This is easier to observe with MiniMap, outside RadMap. 

Playing with Width / Height of the MiniMap might workaround the issue.
Unplanned
Last Updated: 04 May 2018 13:49 by ADMIN
Unplanned
Last Updated: 14 Sep 2018 13:59 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: Map
Type: Bug Report
1

			
Unplanned
Last Updated: 03 Jun 2019 15:23 by ADMIN
The issue is reproduced mainly, when animated items are brought out of the viewport and then reenter the viewport.  
Unplanned
Last Updated: 14 Jan 2021 13:58 by ADMIN
When NavigationVisibility is set to Collapsed, a circle is left in our latest themes.
Unplanned
Last Updated: 27 Dec 2016 13:17 by ADMIN
InformationLayer.GetBestView(...)) method produces incorrect results when working on MapPinPoint items that are part of the information layer.

Please note that this issue is not reproducible with Visualization Layer.
Unplanned
Last Updated: 27 Dec 2016 13:07 by ADMIN
Clusters may not be updated if users expand or collapse them while zooming animation is not finished.
Unplanned
Last Updated: 25 Nov 2016 16:23 by ADMIN
System.InvalidOperationException is thrown in a scenario with big number of clustered items. The exception message states that "The calling thread cannot access this object because a different thread owns it". It is reproducible if you zoom in and out.
1 2