Unplanned
Last Updated: 27 Dec 2016 13:17 by ADMIN
InformationLayer.GetBestView(...)) method produces incorrect results when working on MapPinPoint items that are part of the information layer.

Please note that this issue is not reproducible with Visualization Layer.
Completed
Last Updated: 08 Mar 2018 09:16 by ADMIN
 Map freezes if current culture is non en-US ,AsyncShapeFileReader reads shapes and the Map is zoomed.
Pending Review
Last Updated: 26 Jun 2024 10:31 by Anthony
Created by: Anthony
Comments: 0
Category: Map
Type: Bug Report
0

Hi, we use the map control in our application.

We get random KeyNotFoundException in TilesDownloadManager when zooming in... 

System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
   in System.Collections.Concurrent.ConcurrentDictionary`2.get_Item(TKey key)
   in Telerik.Windows.Controls.Map.TilesDownloadManager.UpdateTileCache()
   in Telerik.Windows.Controls.Map.TilesDownloadManager.Process()
   in Telerik.Windows.Controls.Map.TilesDownloadManager.DownloaderThread()
   in System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
   in System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
   in System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   in System.Threading.ThreadHelper.ThreadStart()

 

System.Collections.Generic.KeyNotFoundException
  in System.Collections.Concurrent.ConcurrentDictionary`2[[System.__Canon, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.__Canon, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]].get_Item(System.__Canon)
  in Telerik.Windows.Controls.Map.TilesDownloadManager.RemoveTile(Telerik.Windows.Controls.Map.TileId)
  in Telerik.Windows.Controls.Map.TilesDownloadManager.RemoveL1Cache()
  in System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
  in System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
  in System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
  in System.Threading.ThreadHelper.ThreadStart()

We use OpenStreetMapProvider and don't use tile caching.

Won't Fix
Last Updated: 24 Jul 2015 13:32 by ADMIN
Setting IsFilled property of the MapPathFigureView to False has no effect. The figure is not shown at all.

The workaround is to use MapShapeFill and set Fill = Transparent.

The XAML team has recently reviewed this issue and will not be addressing it as at this time the team is focusing on the bugs impacting the highest number of developers. If you have encountered this issue and it is blocking for your work please contact us through the support ticketing system with details on your setup and a reference to this item.
Completed
Last Updated: 20 Jan 2015 14:42 by ADMIN
When using MapArcSementView , setting SweepDirection="ClockWise" does not work. The arc is always CounterClockWise.
Completed
Last Updated: 19 Jan 2023 14:50 by ADMIN
With some projections or rectangles with really small sizes close to 0, LocationRect's ZoomLevel returns incorrect value - int.MinValue. The returned value should always be positive integer.
Completed
Last Updated: 07 Apr 2023 07:56 by ADMIN
Release LIB 2023.1.407 (7 Apr 2023)
<telerik:RadMap>
<telerik:RadMap.Provider>
<telerik:UriVectorTileMapProvider UriTemplate="https://vector.hereapi.com/v2/vectortiles/base/mc/{level}/{x}/{y}/omv?apiKey=______"   
 />
</telerik:RadMap.Provider>
</telerik:RadMap>

Map with the following setup displayes zoom level 1-2 but  crashes with ArgumentException on zoom level 3.
Won't Fix
Last Updated: 18 Jan 2024 12:40 by Petar
Created by: Stenly
Comments: 3
Category: Map
Type: Bug Report
0
The RadMap control does not display the MBTiles file format.
Unplanned
Last Updated: 04 Jun 2024 09:45 by ADMIN

i have UriVectorTileMapProvider and i have files pbf.

When i create my style file json i cant get render corectly.

i have two example:

1)one in my style json i have three layers:buildings,military,hospital (ex1.png)

When I use such a file, one polygon is lying with buildings on top where the other polygon covers the buildings

 "layers": [
    {
      "id": "landcover_wood",
      "type": "fill",
      "source": "openmaptiles",
      "source-layer": "landuse",
      "filter": [
        "==",
        "class",
        "military"
      ],
      "layout": {
        "visibility": "visible"
      },
      "paint": {
        "fill-color": "green"
      }
    },
    {
      "id": "landcover_hos",
      "type": "fill",
      "source": "openmaptiles",
      "source-layer": "landuse",
      "filter": [
        "==",
        "class",
        "hospital"
      ],
      "layout": {
        "visibility": "visible"
      },
      "paint": {
        "fill-color": "yellow"
      }
    },
   ,
    {
      "id": "building",
      "type": "fill",
      "source": "openmaptiles",
      "source-layer": "building",
      "minzoom": 12,
      "maxzoom": 24,
      "paint": {
        "fill-color": {
          "stops": [
            [
              13,
              "yellow"
            ],
            [
              16,
              "red"
            ]
          ]
        }
      }
    }
  ]

2) if i have this style json, telering dont recognize color for every layers like hospital or military i have black (ex2.png)

"layers": [

    
    {
      "id": "landuse_classes",
      "type": "fill",
      "source": "openmaptiles",
      "source-layer": "landuse",
      "minzoom": 7,
      "layout": {
        "visibility": "visible"
      },
      "paint": {
        "fill-color": [
          [
            "military"
          ],
          "green",
          [
            "hospital"
          ],
          "red",
          "purle"
        ]
      },
      "metadata": {},
      "filter": [
        "all",
        [
          "in",
          "class",
          "military",
          "hospital"
        ]
      ]
    },
    
    {
      "id": "building",
      "type": "fill",
      "source": "openmaptiles",
      "source-layer": "building",
      "minzoom": 12,
      "maxzoom": 24,
      "paint": {
        "fill-color": {
          "stops": [
            [
              13,
              "yellow"
            ],
            [
              16,
              "red"
            ]
          ]
        }
      }
    }
  ]
}

 

whats wrong with my json file style?

Completed
Last Updated: 14 May 2024 15:37 by ADMIN
Release 2024.2.514 (2024 Q2)

When you inherit BingRestMapProvider and BingRestTileMapSource, following the custom map provider approach
https://docs.telerik.com/devtools/wpf/controls/radmap/how-to/howto-custom-provider

the map does not display any tiles. This is due to internal property TopLayer not set correctly to the TileMapSource class.

 
Won't Fix
Last Updated: 04 Jul 2023 09:36 by ADMIN

The ZIndex property change is not detected by the VisualizationLayer at runtime. 

Workaround: remove and then add back the item where the ZIndex is changed.

Completed
Last Updated: 17 Jun 2022 13:58 by ADMIN
Release R2 2022 SP1
The exception occurs in the SetLogicalWidth method of the MapShapeData class. 
Completed
Last Updated: 04 Mar 2022 15:26 by ADMIN
Release LIB 2022.1.307 (7 Mar 2022)
Created by: Dominik
Comments: 1
Category: Map
Type: Bug Report
0

Hello,

after setting the `ZoomStep` in our project to something smaller than 1 (a feature we are very pleased to receive in the latest update) we encountered a problem when zooming in and out of our map view. I have attached screenshots and an example project to reproduce the issue. It occurs wether the renderer is set to SoftwareOnly or default.

Steps to reproduce:

  1. Start the example project (MapZoomInitial.png)
  2. Scroll the mouse wheel one click in to zoom in one step
  3. Scroll the mouse wheel one click out to zoom out again
  4. Artifacts appear (MapViewAfterZoomInAndOut.png)

 

Completed
Last Updated: 07 Sep 2021 10:14 by ADMIN
Release R3 2021

Using wraparound True and Virtualization in VisualizationLayer.
When panning from left to right and placing rectangles over the requested regions, a gap could be seen on the left side. This is because the regions that get into viewport fire data request event when their top left point is inside the viewport. To cover the viewport, the topright point of the regions should be used instead.

Declined
Last Updated: 30 Nov 2020 16:04 by ADMIN
Shape files are not displayed correctly by the RadMap readers in .NET CORE 3.1 and .NET 5.
Completed
Last Updated: 06 Nov 2020 11:20 by ADMIN
Release LIB 2020.3.1109 (11/09/2020)
The control does not display the image in design time when using a UriImageProvide.
Completed
Last Updated: 26 May 2020 08:34 by ADMIN
Release LIB 2020.2.525 (5/26/2020)
External MapScale object does not update until you Zoom/Move the map
Completed
Last Updated: 12 Mar 2020 13:45 by ADMIN
Release LIB 2020.1.316 (03/16/2020)
When the Mode of the ArcGisMapProvider is changed from the MapCommandBar, the Mode property is not updated. 
Completed
Last Updated: 03 Dec 2019 11:22 by ADMIN
Created by: Dinko
Comments: 0
Category: Map
Type: Bug Report
0
Missing MapOsmCycleCommand resource key in French. All resource keys will be check for the correct spelling.
Unplanned
Last Updated: 19 Nov 2018 16:02 by ADMIN

OpenStreetMap provider uses OpenStreetMapSources which have MaxZoomLevel 18.

When Wraparound of the Map is True and you move (with SetView or ZoomLevel + Center properties) the map to zoomlevel > 18 , no tiles are loaded.