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.
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.
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.
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.
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 

 

 

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: 21 Dec 2018 13:44 by ADMIN
Currently, if you define the provider initially without setting the ApplicationId, and then at a later moment in time (after the provider gets initialized) you set the ApplicationId, the provider doesn't load any picture.
Unplanned
Last Updated: 26 Nov 2018 10:33 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: Map
Type: Feature Request
1
Currently, the KML shape reader supports the MultiGeometry KML tag only partially. Provide full support.
Unplanned
Last Updated: 26 Jun 2018 13:45 by Dinko
Created by: Pete
Comments: 2
Category: Map
Type: Feature Request
5
WMTS is a standard protocol for delivery of tiles map data - see  https://en.wikipedia.org/wiki/Web_Map_Tile_Service 
It should be possible to write code to understand pretty much any service complying with the specification. It would be good if RadMap could be extended to enable it to understand the WMTS specification and allow WMTS data to be used.
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: 29 Mar 2018 11:00 by ADMIN
Currently, when you use the BingRestMapProvider and the BingRestSearchLocationRequest the found locations are formatted using the System.Text.Encoding.Default encoding. This way if the found location contains unsupported characters they won't be shown properly.

Introduce a property for the BingRestSearchLocationRequest class that allows you to set the Encoding.
Unplanned
Last Updated: 22 Feb 2018 11:44 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 3
Category: Map
Type: Feature Request
5
Currently, you can achieve this by using RotateTransform and clipping the container that holds the RadMap control. For example:

<Grid RenderTransformOrigin="0.5,0.5" Width="500" Height="500">
	<Grid.RenderTransform>
		<RotateTransform Angle="45" />
	</Grid.RenderTransform>
	<Grid.Clip>
		<EllipseGeometry Center="250,250" RadiusX="250" RadiusY="250" />
	</Grid.Clip>
	<telerik:RadMap ZoomLevel="6" Center="37, -120">
		<telerik:RadMap.Provider>
			<telerik:OpenStreetMapProvider />
		</telerik:RadMap.Provider>
	</telerik:RadMap>
</Grid>
Unplanned
Last Updated: 21 Aug 2017 09:59 by ADMIN
ADMIN
Created by: Petar Mladenov
Comments: 0
Category: Map
Type: Feature Request
1
 Add a way to control the pan / zoom animation duration.

Currently the properties which control these animation durations are private in MultiScaleImage.cs
Unplanned
Last Updated: 23 Jun 2017 13:43 by ADMIN
ADMIN
Created by: Petar Mladenov
Comments: 0
Category: Map
Type: Feature Request
4
Implement BING REST Traffic API in BingRestMapProvider. 

https://msdn.microsoft.com/en-us/library/hh441725.aspx 

This will allow clients request traffic incident.

This WON'T be enough to display traffic tiles or get congestion data - this usage is limited. Check answer from R. Brundritt =>

https://social.msdn.microsoft.com/Forums/en-US/20020cb8-5e8f-4fe6-abda-ffdcc0edb77e/bing-map-rest-traffic-api-congestion?forum=bingmapssilverlightwpfcontrols 



Note: The following tutorial might be helpful if clients need to use BING REST Traffic API outside RadMap. https://msdn.microsoft.com/en-us/library/jj819168.aspx

Note: In R2 2017 BingMapTrafficProvider will be deleted from our code base due to limitations in the BING Maps Developer API terms of use. Also the service which is behind this provider might be stopped in 2017 so applications using this provider with old version of UI for WPF/ Silverlight might also stop working properly.
1 2 3