Unplanned
Last Updated: 29 Jan 2024 15:48 by Mike
This is to better address issues with missing pbf files for certain zoom levels. 
Default behavior - scaling cached map images form lower levels - could result in blurry images.
Wanted behavior - rescale lower zoom level pbf files resulting in higher quality images.
Completed
Last Updated: 12 Sep 2023 09:53 by ADMIN
Release R3 2023
Created by: Martin
Comments: 7
Category: Map
Type: Feature Request
5
Implement AzureMaps Provider in RadMap based on the following API https://azure.microsoft.com/en-us/services/azure-maps/
Completed
Last Updated: 02 Feb 2023 12:20 by ADMIN
Release R1 2023
Created by: n/a
Comments: 0
Category: Map
Type: Feature Request
13
Make it possible to use a vector tile provider in the RadMap control.
Unplanned
Last Updated: 28 Dec 2022 07:46 by Martin Ivanov
Add an event that allows you to listen for tiles download finished on the provided. The event should fire only after all tiles for the current viewport are downloaded.
Unplanned
Last Updated: 11 Oct 2022 15:27 by Walter
ADMIN
Created by: Martin Ivanov
Comments: 2
Category: Map
Type: Feature Request
7
Add support for reading JSON files encoded in GeoJSON format.
Completed
Last Updated: 30 May 2022 09:25 by ADMIN
Release LIB 2022.2.530 (30 May 2022)
Add CombinedGeometryData  in VisualizationLayer. 
Properties:
   Geometry1 (GeometryData) ,
   Geometry2 (GeometryData) and 
   CombineMode similar to the CombinedGeometry in WPF.
Completed
Last Updated: 04 Mar 2022 15:01 by ADMIN
Release LIB 2022.1.307 (7 Mar 2022)
The current behavior sets the ZoomLevel internally which is number rounded to the best possible zoom which is of type double.
Make this API sets the Zoom property instead.
Completed
Last Updated: 16 Feb 2022 12:10 by ADMIN
Release R1 2022 SP1
With the current implementation of the RadMap control, the default value which will be used for connecting in the internal services is "http". This causes the tiles to not be retrieved if the firewall allows only "https".
Completed
Last Updated: 24 Nov 2021 14:23 by ADMIN
Release R1 2022
ADMIN
Created by: Andrey
Comments: 5
Category: Map
Type: Feature Request
26
Many tasks on RadMap require smooth zooming for the better user experience. For example, floor plans or facility layouts. Default zoom increments are too large for those tasks. We should provide a way to make zoom smooth while keeping zoom level as integer value.
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: 21 Sep 2020 09:19 by ADMIN

Add support for digitizing complex wkt geometries.

Include support for adding, moving and deleting vertices.

 

/Brian

 

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.
Completed
Last Updated: 04 Aug 2020 08:37 by ADMIN
Release LIB 2020.2.810 (8/10/2020)
Currently the "FORMAT" is hardcoded to "PNG". We can expose a way to modify it through the WmsTiledProvider.
Unplanned
Last Updated: 09 Jul 2020 12:07 by ADMIN
Currently, you can export the map only when it is added to the visual tree and fully rendered. Add support for an export without adding the map control to the UI. Consider adding a service that does this or something similar.
Completed
Last Updated: 15 Apr 2020 10:47 by ADMIN
Release LIB 2020.1.420 (04/20/2020)
Currently user cannot hook for event notifying that clusters are regenerated. ZoomChanged is not reliable due to zoom animations and dispatching logic internally.
Unplanned
Last Updated: 10 Mar 2020 12:33 by ADMIN
Created by: Dinko
Comments: 0
Category: Map
Type: Feature Request
6

For example the TickMarkCount property. Modifying it, won't update the fill color of the shapes on the map.

A possible solution:

this.MyColorizer.Colorize(visualizationLayer.Items);
            foreach (var shape in this.visualizationLayer.Items.OfType<MapShapeData>())
            {
                if (shape.IsSelected)
                    shape.UseSelectedFill();
                else if (shape.IsHighlighted) shape.UseHighlightFill();
                else shape.UseRegularFill();
            };

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 

 

 

Declined
Last Updated: 15 May 2019 14:27 by ADMIN
Created by: Aleksandar
Comments: 1
Category: Map
Type: Feature Request
0

Unlike Bing Maps, Azure Maps allows for traffic tiles to be rendered over top the standard map tiles. Please bring the traffic layer back with Azure Maps Traffic Tiles! 

https://docs.microsoft.com/en-us/rest/api/maps/traffic/gettrafficflowtile

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>
1 2 3 4