Need More Info
Last Updated: 12 Feb 2025 15:42 by Hatef
Created by: Jesper
Comments: 6
Category: Map
Type: Feature Request
31
I want to easily draw lines and polygons on the map. 
Unplanned
Last Updated: 10 Feb 2025 12:00 by Hatef

Using a custom SVG icon in a Marker template causes the Map component to break and throw an exception (Failed to execute 'appendChild' on 'Node': Unexpected end of input) in WASM application.

In the meantime, the alternative approach to achieve custom map markers is to use Font Icons. An example of the approach can be found in this REPL link.

Unplanned
Last Updated: 04 Feb 2025 11:28 by Carl
I want to implement a mouse-over tooltip label for each layer in the Map.
Unplanned
Last Updated: 28 Jan 2025 12:21 by ADMIN
Created by: Phil
Comments: 1
Category: Map
Type: Feature Request
5

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 
Completed
Last Updated: 28 Nov 2024 14:38 by ADMIN
Created by: Phil
Comments: 2
Category: Map
Type: Feature Request
4
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: 06 Nov 2024 13:09 by ADMIN
Created by: Joel
Comments: 2
Category: Map
Type: Feature Request
13

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?
  }
}

Duplicated
Last Updated: 09 Oct 2024 07:19 by ADMIN
Created by: Adam
Comments: 0
Category: Map
Type: Feature Request
9
We are using the Map UI Component, where we are allowing a user to enter two points onto the map. Using the map component, is there a way to find a route between these two points as well as find out the distance of that route?
Unplanned
Last Updated: 26 Sep 2024 06:29 by Hiren
Created by: Hiren
Comments: 0
Category: Map
Type: Feature Request
6
I want to provide additional information to the user by hovering over the different shapes of the map. Expose hover event for the shapes.
Declined
Last Updated: 25 Sep 2024 08:31 by ADMIN
Created by: IT
Comments: 2
Category: Map
Type: Feature Request
1
Possibility of creating different types of thematic maps: individual (a color for each individual value), range (colors in degrade according to ranges of values), etc.
Declined
Last Updated: 25 Sep 2024 08:31 by ADMIN
Created by: IT
Comments: 2
Category: Map
Type: Feature Request
0
Hability to draw a label based on a marker attribute.
Duplicated
Last Updated: 30 Aug 2024 11:37 by ADMIN
Created by: Phil
Comments: 3
Category: Map
Type: Feature Request
1

Hello

Is it possible to get the map to support Geolocation? Something like whats on the openstreetmap website map where you can click the location button and the map then moves to where your location is. Maybe some event that we can listen on to get the Latitude and Longitude of the users location which we can then use to manipulate the map?

Phil


Completed
Last Updated: 05 Aug 2024 13:31 by ADMIN
Release 6.1.0
The amount of clicks on the + button and the amount of mouse wheel scrolls is different if you refresh the Map component. 
Unplanned
Last Updated: 21 May 2024 10:25 by SturmA
Created by: SturmA
Comments: 0
Category: Map
Type: Feature Request
1
I want to restrict the pannable area to a specific region and disable the panning outside of that region.
Completed
Last Updated: 30 Apr 2024 12:19 by ADMIN
Release 2024 Q2 (May)
Created by: Ben
Comments: 0
Category: Map
Type: Bug Report
1

If I set a global font icon type, the Map icons are broken, because they are missing the k-font-icon CSS class. A possible workaround is to apply the missing styles to the rendered k-icon class:

In the meantime, one can use SVG icons or the following CSS rule as a workaround:

    .k-map .k-icon {
        width: 1em;
        height: 1em;
        outline: 0;
        font-size: 16px;
        font-family: "WebComponentsIcons";
        font-style: normal;
        font-variant: normal;
        font-weight: normal;
        line-height: 1;
        speak: none;
        text-transform: none;
        text-decoration: none;
        flex-shrink: 0;
        display: inline-flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: center;
        vertical-align: middle;
        position: relative;
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
    }
Completed
Last Updated: 19 Apr 2024 14:24 by ADMIN
Release 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.

Completed
Last Updated: 19 Apr 2024 14:15 by ADMIN
Release 2024 Q2 (May)
Created by: christian
Comments: 1
Category: Map
Type: Feature Request
18
The event would fire when the map viewport has moved.
Unplanned
Last Updated: 26 Feb 2024 09:50 by David
Created by: David
Comments: 0
Category: Map
Type: Feature Request
5

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 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: 17 Jul 2023 20:14 by Rick
Created by: Jean-Marie
Comments: 1
Category: Map
Type: Feature Request
12
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.
1 2