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: 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:07 by ADMIN
Clusters may not be updated if users expand or collapse them while zooming animation is not finished.
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: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: 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: 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: 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: 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.
Unplanned
Last Updated: 25 Nov 2016 14:48 by ADMIN
The Opacity of the provider is not respected by any new map sources added at runtime

To work this around you can set the Opacity of the source manually.

provider.MapSources.Add(new CustomTiledSource() { Opacity = 0.5 });
Declined
Last Updated: 21 Nov 2016 09:07 by ADMIN
InformationLayer.GetBestView(...)) method produces incorrect results when working on MapPinPoint items that are part of the information layer.
Deleting this item because there is a copy of it here =>
https://feedback.telerik.com/Project/143/Feedback/Details/88878-map-informationlayer-getbestview-produces-incorrect-results-when-working-on

Also please have in mind tha this bug is not reproducible with VisualizationLayer.
Completed
Last Updated: 11 Nov 2016 14:17 by ADMIN
ADMIN
Created by: Petar Mladenov
Comments: 0
Category: Map
Type: Feature Request
0
Add public GetCoercedLocationRect method to support the existing GetCoercedLocation.

This is crucial in WrapAround + Virtualization scenarios because 180 longitude location is generally considered in the rande [-180;180] but Region with west-east Longitudes like [180-240] should be coerced to [-180; -120].


Available in LIB version: 2016.3.1114
Completed
Last Updated: 07 Oct 2016 12:31 by ADMIN
When WrapAround is set to TRUE, the MapItemsRequest does not fire when you pan endlessly in one direction.

Available in LIB version: 2016.3.1010
Completed
Last Updated: 17 Sep 2016 09:58 by ADMIN
The Location.Parse() method throws FormatException when the source string is saved (using the Location's object ToString() method) and the culture of the application is set to de-DE. 

Note:  The issue can appear with different cultures that use ',' as number decimal separator.

To work this around you can save or parse the Location manually instead of using ToString() and Parse().

Available in LIB version: 2016.3.919
Unplanned
Last Updated: 31 Aug 2016 13:53 by ADMIN
ADMIN
Created by: Petar Mladenov
Comments: 0
Category: Map
Type: Feature Request
0
Add support for accessing the MapQuestTiles. via their new Static API :

http://www.mapquestapi.com/staticmap/

Since 11 July 2016, MapQuest Tiles cannot be directly accessed.

http://devblog.mapquest.com/2016/06/15/modernization-of-mapquest-results-in-changes-to-open-tile-access/ 


To disable the MapQuest option in RadMap's OpenStreetMapProvider you can use the following code:

<telerik:RadMap x:Name="radMap" >
            <telerik:RadMap.Provider>
                <telerik:OpenStreetMapProvider x:Name="provider" />
            </telerik:RadMap.Provider>                
        </telerik:RadMap>

 InitializeComponent();

      string mapQuestCommandName = "Telerik.Windows.Controls.Map.OpenStreetMapQuestSource";
      CommandDescription command = this.provider.Commands.Where(x => x.CommandParameter.ToString() == mapQuestCommandName).FirstOrDefault();
      this.provider.Commands.Remove(command);

In R3 2016 this option will be disabled by default.
Completed
Last Updated: 25 Aug 2016 08:44 by ADMIN
ADMIN
Created by: Andrey
Comments: 14
Category: Map
Type: Feature Request
38
Is there a way to get the map to continuously scroll without seeing the gray area? As an example, GoogleMaps, MapQuest, etc.. let you scroll left to right without getting to the "end of the world", it just continues to wrap around. I'm trying to avoid seeing the gray when I scroll too far left or right.

The feature for WPF will be available with R3 2016 in September.
Completed
Last Updated: 08 Aug 2016 13:42 by ADMIN
MapPath with RotateTransform is added in InformationLayer runtime. Map produces NullReferenceException.

As a workaround you can use Visualizationlayer and PathData.
Declined
Last Updated: 02 Aug 2016 12:22 by ADMIN
The map control will support the Universal Transverse Mercator (UTM) projections. The map control will have appropriate projection which can be used for empty provider. Also it will have the converter from UTM to Mercator projection (EPSG:4326).

DECLINED: Duplicate with http://feedback.telerik.com/Project/143/Feedback/Details/122715-map-visualizationlayer-should-support-custom-utm-map-projection
Declined
Last Updated: 01 Aug 2016 14:41 by ADMIN
ADMIN
Created by: Andrey
Comments: 0
Category: Map
Type: Feature Request
3
Currently context menu can't be used on the map shape objects directly. We should change implementation of the map shape objects to allow using of the RadContextMenu.

DECLINED: XAML team reviewed this request and decided not to address it in the future. The VisualizationLayer allows using context menu on the map shape visualization.