This is a migrated thread and some comments may be shown as answers.

Tooltip for Map polylines

4 Answers 118 Views
Map
This is a migrated thread and some comments may be shown as answers.
Santiago Dávila
Top achievements
Rank 1
Santiago Dávila asked on 01 Feb 2010, 05:07 PM

Telerik staff

Please, I would like to know if there´s the possibility to add tootips to the map polylines and polygons, as I need that feature for a river based application. I tried to use the tooltip service but I didn´t manage to make it work for those elements.

I ll apreciate an answer and maybe an example

Thanks in advance

Santiago

4 Answers, 1 is accepted

Sort by
0
Andrey
Telerik team
answered on 03 Feb 2010, 08:31 AM
Hi Santiago Dávila,

We are sorry, currently the map shapes such as polylines and polygons do not support tooltips. We will add this functionality in the future releases.

Greetings,
Andrey Murzov
the Telerik team

Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Follow the status of features or bugs in PITS and vote for them to affect their priority.
0
Nuno
Top achievements
Rank 1
answered on 02 Feb 2011, 12:58 AM
Hi Andrey,

Any updates on this matter ? I need to achieve the same functionality.

Thank you,
Nuno
0
Andrey
Telerik team
answered on 04 Feb 2011, 10:30 AM
Hi Nuno,

The tooltips are supported for map shape objects since version 2010.Q2 of our product. Tooltip can be set up for map shape similar to other framework elements:

<telerik:InformationLayer x:Name="informationLayer">
        <telerik:MapPolygon Fill="Red" 
                Points="42.766,25.281 42.77,25.281 42.77,25.29 42.766,25.29"
                ToolTipService.ToolTip="Red rectangle"/>
</telerik:InformationLayer>

or

ToolTip tooltip = new ToolTip()
{
    Content = "Red rectangle"
};
ToolTipService.SetToolTip(this.redRectangle, tooltip);


Regards,
Andrey Murzov
the Telerik team
Let us know about your Windows Phone 7 application built with RadControls and we will help you promote it. Learn more>>
0
Nuno
Top achievements
Rank 1
answered on 04 Feb 2011, 03:21 PM
Hi Andrey,

Just got them to work as espected following MVVM pattern.

Thank you very much.

Nuno
Tags
Map
Asked by
Santiago Dávila
Top achievements
Rank 1
Answers by
Andrey
Telerik team
Nuno
Top achievements
Rank 1
Share this question
or