<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Remove description from mouse hover in GMAP HTML output in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/669934#M20232</link>
    <description>&lt;P&gt;&amp;nbsp;I am using GMAP with HTML5 ODS output and including my own HTML variable to display information for each area on the map.&amp;nbsp; However, I still see a second hover display on the map output showing the "Des=" value.&amp;nbsp; I've tried removing this option entirely from GMAP, and entering Des="" and I still get a hover-over description showing "GMAP" which partially covers some of the htmlvar information in the output.&amp;nbsp; How can I remove this default description entirely?&lt;/P&gt;</description>
    <pubDate>Thu, 16 Jul 2020 17:21:45 GMT</pubDate>
    <dc:creator>RandoDando</dc:creator>
    <dc:date>2020-07-16T17:21:45Z</dc:date>
    <item>
      <title>Remove description from mouse hover in GMAP HTML output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/669934#M20232</link>
      <description>&lt;P&gt;&amp;nbsp;I am using GMAP with HTML5 ODS output and including my own HTML variable to display information for each area on the map.&amp;nbsp; However, I still see a second hover display on the map output showing the "Des=" value.&amp;nbsp; I've tried removing this option entirely from GMAP, and entering Des="" and I still get a hover-over description showing "GMAP" which partially covers some of the htmlvar information in the output.&amp;nbsp; How can I remove this default description entirely?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jul 2020 17:21:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/669934#M20232</guid>
      <dc:creator>RandoDando</dc:creator>
      <dc:date>2020-07-16T17:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: Remove description from mouse hover in GMAP HTML output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/670517#M20233</link>
      <description>&lt;P&gt;Moved to Graphics forum where hopefully you'll get an answer.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jul 2020 21:10:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/670517#M20233</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-07-19T21:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: Remove description from mouse hover in GMAP HTML output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671336#M20249</link>
      <description>&lt;P&gt;I use des='' (with two single-quotes, and nothing between them) to get rid of the default hover-text description in my gmaps. Give that a try, and if it doesn't work for you, give us a little more information about how you're running SAS (in batch mode, using DMS sas, through EG, other? etc).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's the test program I ran in DMS sas just now...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc gmap data=mapsgfk.us map=mapsgfk.us;&lt;BR /&gt;id state;&lt;BR /&gt;choro segment / levels=1 des='';&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 11:18:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671336#M20249</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2020-07-22T11:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: Remove description from mouse hover in GMAP HTML output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671341#M20252</link>
      <description>&lt;P&gt;I had the Des='' after the semicolon for the choro statement as :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc gmap data=mapsgfk.us_counties map=mapsgfk.us_counties anno=anno_all;
id state county;
choro segment / legend=legend1 levels=5 midpoints (0 1 2 3 4) html=htmlvar ;
des='';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I moved it inside that like you had done in your example and the issue persists.&amp;nbsp; I should point out that the html output in the SAS results window does not show the description, but in the html output file it does.&amp;nbsp; So, the issue is limited to the output file.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 11:36:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671341#M20252</guid>
      <dc:creator>RandoDando</dc:creator>
      <dc:date>2020-07-22T11:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: Remove description from mouse hover in GMAP HTML output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671344#M20254</link>
      <description>&lt;P&gt;Here is my ods statement:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options orientation=landscape papersize=legal nodate nonumber;
ods html5 style=sasweb;
file="....";

...

ods html5 close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 Jul 2020 11:41:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671344#M20254</guid>
      <dc:creator>RandoDando</dc:creator>
      <dc:date>2020-07-22T11:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Remove description from mouse hover in GMAP HTML output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671401#M20255</link>
      <description>&lt;P&gt;Try using the following goption ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;goptions noaltdesc;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that doesn't work, show the code you're using to create the html file (or are you using an interface like EG to create the HTML file?)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 14:31:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671401#M20255</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2020-07-22T14:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Remove description from mouse hover in GMAP HTML output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671416#M20257</link>
      <description>That didn't work.  I am using EG to create the file.  The code is very similar to what I posted above.  I am using the MAPSGFK.US_COUNTIES file, with a few variables added to it for the choro statement and the HTML variable.  The anno set is only x y coordinates which were projected to the same coordinate system of the counties data set.</description>
      <pubDate>Wed, 22 Jul 2020 14:59:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671416#M20257</guid>
      <dc:creator>RandoDando</dc:creator>
      <dc:date>2020-07-22T14:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Remove description from mouse hover in GMAP HTML output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671425#M20258</link>
      <description>&lt;P&gt;Hmm ... well, I did a little testing on this just now (I hadn't done much with html5 before), and it appears that html5 gmap has a default 'alt' text (such as "Choropleth map of population_2010") that can be suppressed with either the des='' option or "goptions noaltdesc;"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But the html5 output &lt;STRONG&gt;also&lt;/STRONG&gt; seems to show the graph title in a popup similar to the alt popup. And since I haven't used html5 output much, I'm not sure whether or not there's a way to suppress the title showing up in a popup (maybe someone else knows?)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One work-around would be to suppress the title (using a blank title statement), and then use a 'note' statement, or annotate, to fake a title. Like the last sample below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This sample shows the iterations I went through, trying to find a way to get rid of all the 'alt-like' popup windows...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%let name=map007;&lt;BR /&gt;filename odsout '.';&lt;/P&gt;
&lt;P&gt;ODS LISTING CLOSE;&lt;BR /&gt;ods html5 path=odsout body="&amp;amp;name..htm" style=sasweb;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data my_data; set sashelp.us_data;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;title "No special options";&lt;BR /&gt;proc gmap data=my_data map=mapsgfk.us;&lt;BR /&gt;id statecode;&lt;BR /&gt;choro population_2010 / levels=5;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;title "Using des=''";&lt;BR /&gt;proc gmap data=my_data map=mapsgfk.us;&lt;BR /&gt;id statecode;&lt;BR /&gt;choro population_2010 / levels=5 des='';&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;goptions noaltdesc;&lt;BR /&gt;title "Using goptions noaltdesc";&lt;BR /&gt;proc gmap data=my_data map=mapsgfk.us;&lt;BR /&gt;id statecode;&lt;BR /&gt;choro population_2010 / levels=5;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;goptions noaltdesc;&lt;BR /&gt;&lt;STRONG&gt;title;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;proc gmap data=my_data map=mapsgfk.us;&lt;BR /&gt;&lt;STRONG&gt;note move=(40pct,94pct) height=14pt font="albany amt/bold" "Using note as title";&lt;/STRONG&gt;&lt;BR /&gt;id statecode;&lt;BR /&gt;choro population_2010 / levels=5;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods html5 close;&lt;BR /&gt;ODS LISTING;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 15:09:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671425#M20258</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2020-07-22T15:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: Remove description from mouse hover in GMAP HTML output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671436#M20259</link>
      <description>&lt;P&gt;I'm afraid I cannot go with the last one, as I am using multiple title statements with unicode embedded in some of them (I believe you were the one who assisted in getting that to work.) I have a legend for the anno points built into the title.&amp;nbsp; I am also using multiple footnotes.&amp;nbsp; And these statements are all following the "file=" statement.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 15:26:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671436#M20259</guid>
      <dc:creator>RandoDando</dc:creator>
      <dc:date>2020-07-22T15:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: Remove description from mouse hover in GMAP HTML output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671462#M20261</link>
      <description>&lt;P&gt;Hmm ... I tried a few more things (such as&amp;nbsp;options(outline="off" title='') and&amp;nbsp;ods noproctitle;) to see if they would affect it ... but they don't seem to. I think I'm out of ideas on this one!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 16:45:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-description-from-mouse-hover-in-GMAP-HTML-output/m-p/671462#M20261</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2020-07-22T16:45:43Z</dc:date>
    </item>
  </channel>
</rss>

