Unplanned
Last Updated: 28 May 2021 17:26 by ADMIN
Created by: Jochen
Comments: 0
Category: Map
Type: Feature Request
2
Hello,
this is my scenario:

I add the MapMarkers to the markers collection  on Server side.
I bind the marker click event on server side and forward the retrieved values to a hidden input and button:

            // Verbinden des Clicks

            string function = "function(sender) { var title = sender.marker.options.title; " +

                " title = title.substr(0, title.indexOf('-') - 1); document.getElementById('" +

                c_MarkerData.ClientID + "').value = title; document.getElementById('" +

                c_Markerclick.ClientID + "').click(); }";

            c_Mainmap.ClientEvents.OnMarkerClick = function;

Markup:
<div style="display: none; visibility: hidden">

    <asp:HiddenField runat="server" ID="c_MarkerData" />

    <asp:Button runat="server" ID="c_Markerclick" OnClick="c_Markerclick_Click" />

</div>

The title starts with a unique ID of the data entity - i need this id to identify the data row when handling the c_Markerclick_Click event. So i misuse the marker title to forward this.

If the MapMarker would have a Tag attribute or so, i could set that on Server side and retrieve the needed Information in a clean way.

Greetings Jochen
Completed
Last Updated: 30 Oct 2020 21:22 by ADMIN
In the Kendo/ASP.Net Map add the option for a legend with distance scale that updates on zoom level.  See attached image for placement and function 
Unplanned
Last Updated: 03 Aug 2016 13:48 by Emad
Created by: matt
Comments: 5
Category: Map
Type: Feature Request
2
Hello,

This is actually a request for the RadMap category, but that option is not listed in the "Category:" dropdownlist on this page for some reason?

The problem -- when a RadMap's marker has its tooltip visible (say, by rolling the mouse over the marker), moving the mouse over the tooltip itself does not prevent the tooltip from disappearing. Instead, when the mouse is rolled over the tooltip, the tooltip will hide itself. 

This should be changed for two reasons: 1) when a user rolls over a tooltip, it means they are interested in the tooltip's content and likely do not want it to close. 2) If you have a link inside the tooltip, it can be impossible to reach it in time before the tooltip closes. 

Lengthening the delay to closing is not a solution to this problem. Nor is enable click-to-open, click-to-close for the tooltip, since requiring clicks to open or close the tooltip is too time-consuming for quick scanning of tooltip (until the desired marker item is found).

Only keeping the tooltip visible when moused-over will resolve this issue. I can think of no reason to let the tooltip close when moused over.


thanks,
matt
Completed
Last Updated: 28 Sep 2018 13:45 by David
This feature would be useful when the bound markers are dynamically changing. With such functionality the end-user will be able to automatically examine all bound markers and would not need to pan or zoom.