Planned
Last Updated: 18 Apr 2024 11:36 by ADMIN
Scheduled for 2024 Q2 (May)
Created by: christian
Comments: 4
Category: Map
Type: Feature Request
30

The event would fire when the map zoom level has changed.

===

ADMIN EDIT: The new zoom level should be accessible in the event handler.

Planned
Last Updated: 08 Apr 2024 10:39 by ADMIN
Scheduled for 2024 Q2 (May)
Created by: christian
Comments: 1
Category: Map
Type: Feature Request
17
The event would fire when the map viewport has moved.
Unplanned
Last Updated: 04 Apr 2024 05:52 by ADMIN
Created by: Jesper
Comments: 2
Category: Map
Type: Feature Request
19
I want to easily draw lines and polygons on the map. 
Unplanned
Last Updated: 26 Feb 2024 09:50 by David
Created by: David
Comments: 0
Category: Map
Type: Feature Request
2

Currently, the marker tooltip can be shown only when hovering the marker. I want to show the tooltip when the user clicks the marker.

Example use case:

I've included clickable elements in the tooltip. The tooltip is hidden as soon as the mouse leaves the marker and the user cannot interact with the tooltip elements.

Unplanned
Last Updated: 07 Nov 2023 13:18 by Rushik
I want the Map to show a Loader until it is fully rendered. 
Unplanned
Last Updated: 26 Oct 2023 09:35 by ADMIN
I want to implement a mouse-over tooltip label for each layer in the Map.
Unplanned
Last Updated: 26 Oct 2023 08:01 by ADMIN
It would be nice to have an ability to add / define the Buttons which should be shown on the Map.
under the class  k-map-controls k-pos-top k-pos-left

like the navigator and zoom controlls. I like to add some specified Button with my own events like an mylocationBtn something like this..
Unplanned
Last Updated: 03 Oct 2023 22:18 by Alexander
Created by: Phil
Comments: 1
Category: Map
Type: Feature Request
2
When trying to set center at runtime, warnings are generated explaining that center should only be set from within the component. It would be hugly beneficial to be able to set centre dynamically at runtime to manipulate the map and have it pan programmatically to different locations.
Unplanned
Last Updated: 17 Jul 2023 20:14 by Rick
Created by: richard
Comments: 1
Category: Map
Type: Feature Request
10
Add marker clustering support to the Telerik UI for Blazor Map control.
When a map with many close to each other markers is viewed, they should group together.
Duplicated
Last Updated: 05 Jul 2023 08:31 by ADMIN
Created by: Steven
Comments: 1
Category: Map
Type: Feature Request
0
A common way to visualize the layer on the map is by being able to specify a unique color for a specific value or range of values, and for that layer to be able have multiple ranges defined.    For example, let's say you were displaying the likelihood of forest fires in different states in the United States.  You may have a 0-20, 21-40,41-60,61-80, and 81+ as the five ranges.   The map would need to be able to render each feature (polygon or line or point) based upon a value in the incoming dataset (in geojson, it could be a attribute field with the value, or it could be a property within an enumerated list).    Another case would be an electoral results map, showing who one each county.   One color would symbolize Republican, another Democrat, and a final "Other" (which doesn't seem to occur).   Being able to do this is a basic map visualization, and to also be able to display these ranges/values in the legend would be helpful.
Completed
Last Updated: 10 Jun 2023 15:24 by Roger
Release 4.1.0 (15/03/2023)
One example of such customization is the ability to change the Map marker icon. 
Unplanned
Last Updated: 02 Jun 2023 08:10 by Tino
Created by: Tino
Comments: 0
Category: Map
Type: Feature Request
3
I want to disable the Tooltip that appears when mouseOver the Marker.
Unplanned
Last Updated: 01 Mar 2023 09:51 by ADMIN
Created by: Joel
Comments: 0
Category: Map
Type: Feature Request
12

Ability to refresh data for specific Map Layers. Currently the only way to update markers on Map is by calling Refresh on the Map component or issuing a StateHasChanged call.

Currently Maps does not support observable data, according to documentation: Databind to Observable Collection - Telerik UI for Blazor

Purpose: Ability to have "live" updating markers and/or shapes without calling MapRef.Refresh() which causes a full component "blink" and refresh in Edge, and to avoid StateHasChanged.

Example/Pseduo-Razor code:
<TelerikMap @ref="MapRef">
  <MapLayers>
    <MapLayer Type="@MapLayersType.Marker" Data=@MyData" @ref="LayerRef" />
  </MapLayers>
</TeleriKMap>

Example/Pseudo C# example
@code {
  TelerikMap MapRef {get; set; }
  TelerikMapLayer LayerRef { get; set; }

  MyData = new List<MapMarker>() {
    // Data in here
  };

  private void WholeComponentRefresh() {
    MapRef.Refresh(); // Existing functionality
  }

  private void AddMarker() {
    MyData.Add(new MapMarker()); // Map ignores this because it does not treat as observable
  }

  private void MyLayerRefresh() {
    LayerRef.Refresh(); // If we don't have observable, could we at least get per-layer Refresh?
  }
}

Unplanned
Last Updated: 07 Feb 2023 06:41 by ADMIN
Created by: Phil
Comments: 0
Category: Map
Type: Feature Request
2

Hi

Can bounding box support be considered for the map please. It would be great if we can reference at runtime the current bounds that are displayed on the screen in bounding box format (https://wiki.openstreetmap.org/wiki/Bounding_Box) such as the open street map format below.

Im hoping as the map uses open street map this can be made available to the component.

bbox = min Longitude , min Latitude , max Longitude , max Latitude 
Unplanned
Last Updated: 10 Nov 2022 07:13 by Dan
Created by: Dan
Comments: 0
Category: Map
Type: Feature Request
2
I am looking to use the Render v2 api for Azure Maps in order to provide the tileset for the telerik maps component. Currently they only support vector (pbf) format, otherwise known as Protocolbuffer Binary Format.
Unplanned
Last Updated: 10 Nov 2022 06:41 by Patrik Madliak
I would like to disable the ability to drag the map
Duplicated
Last Updated: 09 Nov 2022 12:10 by ADMIN
Created by: James
Comments: 2
Category: Map
Type: Feature Request
5
Is it possible to use custom icons for the map marker?
Unplanned
Last Updated: 18 Oct 2022 10:18 by Walter
Created by: Walter
Comments: 0
Category: Map
Type: Feature Request
13
Currently, one can specify a certain color only for the whole Shape layer. I'd like to set a different color for each shape in the layer.
Unplanned
Last Updated: 26 Sep 2022 12:23 by Keith
Created by: Keith
Comments: 0
Category: Map
Type: Feature Request
5

I want to catch the user click on a shape and have the ability to change the color of that shape to show that it is selected. Currently, the OnShapeClick event does not expose such an option.

Please allow changing the shape color in the OnShapeClick event.

Unplanned
Last Updated: 16 Aug 2022 08:08 by Chris Johnson
When you enable the WrapAround for the Map, the markers remain only on their original location and does not render when the user scrolls the map to the east and to the west.
1 2