By Daniel Du
I set up tooltip for some layers, but it seems that it is too slow to show up when cursor is hovering over the feature. Is it possible to make it a little faster?
For fusion viewer (flexible web layout), the configuration of map tip time of delay is stored in the application definition (flexible web layout) which is stored in repository.
You can edit the ApplicationDefinition resource in repository directly. It can be done by Resource Service API(MgResourceService:GetResourceContent and MgResourceService.SetResource), or by MapAgent,or Maestro, which is an open source tool and not supported by DevTech.
Here is a snippet of application definition resource content, you can increase the value of <Delay> tag of MapTip :
<Widget>
<Name>Maptip</Name>
<Type>Maptip</Type>
<Location />
<Extension>
<Tolerance>2</Tolerance>
<Target>MaptipWindow</Target>
<WinFeatures>
menubar=no,location=no,resizable=no,status=no
</WinFeatures>
<Delay>350</Delay> <!-- millisecond-->
<Layer />
</Extension>
</Widget>
Hope this helps.