Duplicated
Last Updated: 05 Jul 2023 08:31 by ADMIN
Created by: Steven
Comments: 1
Category: Map
Type: Feature Request
2
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
5
I want to disable the Tooltip that appears when mouseOver the Marker.
Unplanned
Last Updated: 06 Dec 2022 09:18 by ADMIN

Hello,

i am came into scenario, where user wants multiple "colored" bubbles, the only option in current version is:
- use multiple bubble layers

But only ONE of the layer(the last one?) is firing the OnShapeClick event.

Expected:
Clicking on any "bubble"/shape should always fire the event OnShapeClick()

Is there any workaround, or idea how to force event to fire?

Dynamic loading of multiple colored layers/bubbles, but same problem is when you "statically" put 2 or more layers on map:

<TelerikMap Center="@Center"
			MinZoom="3" Height="80vh"
			Zoomable="true" Pannable="true" 
			Zoom="7" 
			OnMarkerClick="@( (args) =>  OZRowCmd((CrmMapOrgModel)args.DataItem,15))"
			OnShapeClick="@( (args) =>  OZRowCmd((CrmMapOrgModel)args.DataItem,15))"
	>
		<MapLayers>

			<MapLayer Type="@MapLayersType.Tile"
				  Attribution="@Attribution"
				  Subdomains="@Subdomains"
				  UrlTemplate="@UrlTemplate">
			</MapLayer>

			@if (MarkerList != null) foreach (var it in MarkerList)
				{
				
					@if (it.MarkerType == (int)MapLayersType.Marker)
					{
						<MapLayer Type="@MapLayersType.Marker"
				  Data="@MarkerData1.Where(x=>x.MarkerType==it.MarkerType)"
				  LocationField="@nameof(CrmMapOrgModel.LatLng)"
				  TitleField="@nameof(CrmMapOrgModel.CisloOrgNazev)"
				  />
				
					}
					@if (it.MarkerType == (int)MapLayersType.Bubble && MarkerData1.Any(x => x.MarkerType == it.MarkerType & x.StavTr == it.StavTr))
					{
						<MapLayer Type="@MapLayersType.Bubble"
				  Data="@MarkerData1.Where(x=>x.MarkerType==it.MarkerType & x.StavTr==it.StavTr)"
				  LocationField="@nameof(CrmMapOrgModel.LatLng)"
				  
				  ValueField="@nameof(CrmMapOrgModel.MarkerValue)" MinSize=@it.MinMarkerValue MaxSize=@it.MaxMarkerValue
				  >
							<MapLayerBubbleSettings>
								<MapLayerBubbleSettingsStyle >

									<MapLayerBubbleSettingsStyleFill Color="@it.MarkerColor"></MapLayerBubbleSettingsStyleFill>
									<MapLayerBubbleSettingsStyleStroke Color="@it.MarkerStrokeColor"></MapLayerBubbleSettingsStyleStroke>
								</MapLayerBubbleSettingsStyle>
							</MapLayerBubbleSettings>
						</MapLayer>
					}
				}

		</MapLayers>
	</TelerikMap>

===

ADMIN EDIT

===

The bug report applies to both Bubble layer and Shape layer.

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
6
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
16
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
6

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.
Unplanned
Last Updated: 25 Jul 2022 10:00 by Patrik Madliak
Created by: Patrik Madliak
Comments: 0
Category: Map
Type: Feature Request
5
I want to easily hide the Map buttons.
Unplanned
Last Updated: 21 Jul 2022 14:24 by Rick
Created by: John
Comments: 3
Category: Map
Type: Feature Request
7

I need to allow users to position a map marker on the map. As such, I need them to be able to drag the marker and/or map but I don't see any drag events documented.

How do I support user marker positioning with interactions like a drag, drop, click, etc.?

Here is our scenario. The use case is for servicing automobile breakdowns. We use the browser to guess the user's location but it may not be correct, either by a little or a lot:

  1. The map is initialized with the current device location.
  2. The user is asked to confirm the location or reposition the "me marker" to locate the actual position of their vehicle.
  3. The user can drag their marker to the actual location.
  4. The app records the latitude and longitude of the dropped marker.

We expect users to be on small format devices for this, and precise location data is critical (e.g. on the freeway or a road going under the freeway).

Unplanned
Last Updated: 12 Jul 2022 07:47 by Maximilian
I would like to be able to enable and disable the mouse wheel zoom. 
1 2