Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
The map control does not support the border. It inherits the BorderBrush and BorderThickness properties from ItemsControl, but currently they can't be used for the design of the control.
Unplanned
Last Updated: 05 Jan 2017 07:59 by Doug
ADMIN
Created by: Andrey
Comments: 1
Category: Map
Type: Feature Request
3
The KmlReader should support <LabelStyle> KML tag.
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.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
The BingSearchProvider should be able to use StructuredSearchQuery in the SearchRequest.
The BingSearchProvider should be able to use UserLocation in the UserProfile.
Unplanned
Last Updated: 03 Jan 2017 21:01 by ADMIN
Currently, the shape file reader can read the files only once when the ReadAsync() method is called. When new files are added in the SourceCollection and the method is called again, the reader doesn't read properly. Implement a mechanism that allows the new files to be read.

At this moment, to read additional files you can create a new reader and add the files in it. Then reset the Reader property of the layer.

var reader = new AsyncShapeFileReader();
reader.SourceCollection.Add(new AsyncReaderSource()
{
Source = new Uri("/WpfApplication16;component/DataSources/Alabama.shp", UriKind.RelativeOrAbsolute),
DataSource = new Uri("/WpfApplication16;component/DataSources/Alabama.dbf", UriKind.RelativeOrAbsolute)
});
this.layer.Reader = reader;
reader.ReadAsync();
Completed
Last Updated: 10 Jan 2018 10:26 by ADMIN
Add the CanvasDark, CanvasLight, CanvasGray, RoadOnDemand and AerialOnDemand modes in the BingRestMapProvider.

Currently it supports only Aerial, Road and BirdsEye and their variants with labels.

Check the imagerySet parameter here: https://msdn.microsoft.com/en-us/library/ff701724.aspx

Ordnance Survey will not be added among with these modes.
Completed
Last Updated: 16 Apr 2014 08:35 by ADMIN
When the selection is started on map control then it can be cancelled using the Escape key.
Unplanned
Last Updated: 24 Nov 2020 13:52 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: Map
Type: Feature Request
2
Add support for rendering heatmap visualization over the map, based on a set of points and their density.
Unplanned
Last Updated: 06 Aug 2020 12:29 by ADMIN
Add API which allows to manually parse and create MapShapeData objects from the shape file read by the AsyncShapeFileReader (part of VisualizationLayer). This will be useful if you want to modify or replace shapes during their reading. Or if you want to handle errors with invalid shape file geometries.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
Currently shape readers (KML, ESRI shape, SQL Geospatial) don't provide information about unsupported elements in sequence. They should either return list of the detected unsupported elements or throw €œUnsupported€ exception.
Unplanned
Last Updated: 04 Dec 2019 15:27 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: Map
Type: Feature Request
2

Add an API to load Dark tiles in the provider.

This mode can be achieved by showing tiles from the Carto Dark tile server.


Unplanned
Last Updated: 17 May 2019 10:12 by ADMIN
Created by: Aleksandar
Comments: 1
Category: Map
Type: Feature Request
2

Here maps has the ability to render map tiles with traffic. They include a freemium tier unlike some of the others.

https://developer.here.com/documentation/map-tile/topics/quick-start-map-tile.html

https://developer.here.com/documentation/map-tile/topics/resource-base-tile-intro.html 

 

 

Unplanned
Last Updated: 04 Apr 2019 10:35 by ADMIN
Currently tiles are downloaded for additional zoom levels except the current one. The tiles are cached and later additional requests for the same tile are avoided. That said, it would be nice to have an option to download only the tiles for the current zoom level or specify a range of zoom levels.
Unplanned
Last Updated: 23 Jan 2019 14:30 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: Map
Type: Feature Request
2
Currently, the bindable wrappers classes like (MapPolygonView, MapPathView, etc.) are missing ZIndex property, in contrast with the map shape data objects (PolygonData, PathData, etc.) which support this. 

The map bindable wrappers should expose a ZIndex property that needs to be synced with the related map shape object
Unplanned
Last Updated: 03 Jan 2017 21:01 by JP
Created by: JP
Comments: 1
Category: Map
Type: Feature Request
2
Add feature for ECW files to be loaded as a map source.
Unplanned
Last Updated: 01 Jun 2018 06:55 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: Map
Type: Feature Request
2
Implement OpenStreetMap search provider. Similar to BingSearchProvider (http://docs.telerik.com/devtools/wpf/controls/radmap/features/search).

Currently , to implement location search with OpenStreetMap provider, you can use the Nominatim API:

https://wiki.openstreetmap.org/wiki/Nominatim
Unplanned
Last Updated: 03 Jan 2017 21:00 by Cosh
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 1
Category: Map
Type: Feature Request
2

			
Completed
Last Updated: 22 Apr 2019 13:27 by ADMIN
Release R2 2019
There is a change in the Open Street Map Cycle and CylcleTransport services and they require an API key. Without it the service will returned tiles with a watermark saying "API KEY REQUIRED". Currently, the OpenStreetProvider doesn't expose a mechanism for providing a key. 

At this point you can provide a key by creating a custom map provider deriving from OpenStreeMapProvider and also a custom OsmTileMapSource. And override the original URL to use also an API Key.

public class CustomOpenStreetMapProvider : OpenStreetMapProvider
{
    public CustomOpenStreetMapProvider()
    {
        string sourceKey = (typeof(OpenStreetCycleTransportSource)).FullName;
        this.MapSources[sourceKey] = new CustomOpenStreetCycleTransportSource("your api key here");           
    }
}
 
public class CustomOpenStreetCycleTransportSource : OsmTileMapSource
{
    private static string UrlFormat = @"http://{prefix}.tile.thunderforest.com/transport/{zoom}/{x}/{y}.png?apikey={apikey}";
    private string apiKey;
 
    public CustomOpenStreetCycleTransportSource(string apiKey)
        : base(UrlFormat)
    {
        this.apiKey = apiKey;
    }
 
    protected override Uri GetTile(int tileLevel, int tilePositionX, int tilePositionY)
    {
        Uri originalUri = base.GetTile(tileLevel, tilePositionX, tilePositionY);
        string newUri = originalUri.OriginalString.Replace("{apikey}", this.apiKey);
        return new Uri(newUri);
    }
}

<telerik:RadMap>
    <telerik:RadMap.Provider>
        <local:CustomOpenStreetMapProvider/>
    </telerik:RadMap.Provider>
</telerik:RadMap>
Unplanned
Last Updated: 03 Jan 2017 21:14 by Etienne
The method UpdateShapeData of MapShapebindableWrapper should be protected or at least protected internal so that it would be possible to inherit from that class. 
Unplanned
Last Updated: 03 Jan 2017 21:13 by Bill
Currently the SQL GeospatialDataReaders do not support binding to source - collection of DataRows.

You store the data in the datarows for example like si row["Geometry"] ="PolyGone((Point 1, ....))"

but there is no property you can set for GeospatialPropertyName in order to retrive this Geometry data.