Screen Flickering

Hello,



I am using the VCL component for Google. When I first open the map, see code below the screen is flickering. How can I prevent this for happening ?



Second question. How can I make a marker dragable to another position ?



Thank in advance



Gert Hoogeboom





          WebGMaps1.DeleteAllMapMarker;

          WebGMaps1.Markers.Add(strtofloat(Edit6.Text),strtofloat(Edit5.Text),Edit2.Text);

          WebGMaps1.Markers.Items[0].Clickable:=True;

          WebGMaps1.Launch;

Hi,

- Unfortunately there's currently no way to prevent flickering while the map is loading from the google map servers.

- You can set the Draggable property to true to enable Marker dragging.
Example:
WebGMaps1.Markers.Items[0].Draggable:=True;

Is this something your going to add in future versions ?

Hi,


There currently are no plans to do this.
We'll have to investigate if there is a possibility to improve this behavior in a future version of the TMS WebGMaps.