ThinkGeo.com    |     Documentation    |     Premium Support

Dragable user control on the map

Hi,


Could you tell me please which resources (.dll, .js) should I use to create dragable user control on the map?


I am thinking about creating our own search control like your DescriptionPanel control. This control will consist of textboxes, checkboxes, dropdownlists populated from our database. When user click on search link, this control shoud be centered on the map. When user chose parameters and submit the search form, the search result will be shown on the map.


 


 


 



Hello Igor,


Thanks for your post, I think there is a easier way to fit your requirements, you can use a draggable marker, and add any controls you want(textbox, checkbox, dropdownlist etc) into it.


Please see this code.



Marker marker = new Marker(-95.2806, 38.9554);
            marker.Image = Properties.Resources.AQUA; 
            marker.Width = 20;
            marker.Height = 34;
            marker.YOffset = -17;
            TextBox text = new TextBox();
            marker.Controls.Add(text);

Regards,


Gary



Gary,


Thank you for you reply, but it should me a search form like I attached: ims.infomine.com/51871/image.gif



Igor, 
  
 DescriptionPanel doesn’t have any relationship with the map, it’s just a client div which applied js and css. It can be used separately without map. I think create a styled div is easy for any web developer. 
  
 Thanks, 
 James