5

My organization is working on a new version of our software using ArcGIS Engine 10. Previous versions of the software (running on ArcGIS Engine 9.3) displayed MapTips fine as long as they were enabled in the mxd. Our new version running on ArcGIS Engine 10 doesn't display MapTips (and they are fine in the mxd).

Is there any code or setting to enable MapTips, or any known reasons that would cause them to not display in an ArcGIS Engine 10 application?

I have already discovered that layers within a Basemap layer won't display MapTips, so that is not the cause.

PolyGeo
65.5k29 gold badges115 silver badges350 bronze badges
asked Dec 12, 2011 at 19:42
0

2 Answers 2

3

The needed setting is:

mapControl.ShowMapTips = true;

i.e. set the ShowMapTips property on your map control to True.

PolyGeo
65.5k29 gold badges115 silver badges350 bronze badges
answered Dec 16, 2011 at 18:35
1
IFeatureLayer thisFeatureLayer = thisLayer as IFeatureLayer;
thisFeatureLayer.ShowTips = true;
answered Dec 12, 2011 at 20:54
1
  • 1
    An anonymous user notes, "This will programmatically set MapTips to display, but in the case described, the MapTips don't display regardless of the state of this flag." Commented Dec 15, 2011 at 19:15

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.