Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
It should be possible to specify zoom range where caption of the map shape will be visible.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ewart
ADMIN
Created by: Andrey
Comments: 1
Category: Map
Type: Feature Request
4
The RadMap control should support for a Crosshair to appear at the current Center.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
Currently the InformationLayer.GetBestView method takes in account visible size of the markers (in pixels) and makes best possible assumption about its geographical size when calculating location rectangle. But size in pixels corresponds to different geographical size (in latitude/longitude degrees) depends on the zoom level. So it could take 2-3 times to get really optimal zoom level depends on the initial zoom level. The InformationLayer.GetBestView method should be changed to provide precise result at once regardless of the initial zoom level.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
Current implementation of the SearchResultSet have not AvailableFilters property and BingSearchProvider don't pass these values to the response.
Unplanned
Last Updated: 05 Jan 2017 07:59 by Michael
ADMIN
Created by: Giuseppe
Comments: 1
Category: Map
Type: Feature Request
5
Add Oracle spatial support to RadMap.
Unplanned
Last Updated: 05 Jan 2017 07:59 by Jason D
ADMIN
Created by: Andrey
Comments: 2
Category: Map
Type: Feature Request
6
The Bing Map provider displays the "no camera" icons from bing’s imagery server when the images is absent for the current zoom on high zoom levels. The default behavior should be changed to zooming the lowest available resolution instead of showing the "no camera" icon.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
Extend KML BalloonStyle.Text to support feature entity references (e.g. $[name]) - see http://code.google.com/apis/kml/documentation/kmlreference.html#balloonstyle for more information.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
Currently BalloonStyle.Text supports only <p>, <b> and <font> elements -- extend it to support table/tr/td elements as well.
Unplanned
Last Updated: 05 Jan 2017 07:59 by Peter Hedley
ADMIN
Created by: Andrey
Comments: 1
Category: Map
Type: Feature Request
6
It should be possible to use scrollbars for the map panning. Customer should be able to turn on/off vertical and horizontal scrollbars arond the map's view port and use them to scroll the map.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
The MapShapeReader converts each dbf record to the ExtendedData value. By default it converts numeric types to integer or double .Net type etc.
If it can't convert a field, then the exception is thrown and it could be handled.
It will be more prefered to return it using the Error property of arguments in PreviewReadCompleted and ReadCompleted event.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
ADMIN
Created by: Andrey
Comments: 0
Category: Map
Type: Feature Request
5
When using 'Kilometer' as the DistanceUnit, the Scale switches from kilometers to meters when zooming in. But when using 'Mile'  the Scale does not switches from miles to feet.
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: 04 Jan 2017 12:56 by ADMIN
ADMIN
Created by: Andrey
Comments: 0
Category: Map
Type: Feature Request
10
Add ability to change visibility of the information layer depending on the zoom range.
Unplanned
Last Updated: 04 Jan 2017 07:27 by Vlad
RadMap Supports reading shp, kml files.

Add feature to support the opposite , the items from the Visualization layer to be exported as shp, kml files.
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.
Unplanned
Last Updated: 03 Jan 2017 21:09 by Andrew
Often clients need to change the colors of the Bing / OpenStreet Maps.

Reasearch for a possible solution and add it in XAML SDK GitHub if possible. 
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();
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: 03 Jan 2017 21:01 by Julien
Created by: Julien
Comments: 0
Category: Map
Type: Feature Request
5
Add support for 3D Elevation Models like in Bing Maps for WPF.

https://rbrundritt.wordpress.com/2013/02/13/3d-elevation-models-with-bing-maps-wpf/