MI-L webmap resources for design?

2000-12-18 Thread levent demircan

hi

is there any web sites where i can find some gifs, backgrounds, and other cool
staff for a webmap design? (such as zoom buttons, map images etc.)

thanks
levent


Get free email and a permanent address at http://www.netaddress.com/?N=1


___
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, send e-mail to [EMAIL PROTECTED] and
put "unsubscribe MapInfo-L" in the message body.



MI-L NTV2

2000-12-18 Thread Tony Kelava

Hi All,

Has anyone used this format for grid transformations in MapInfo? For example, I want 
to be able to transform basic Lat/Long into correct GDA94 (Geocentric Datum of 
Australia) format.

Thanks

Tony





___
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, send e-mail to [EMAIL PROTECTED] and
put "unsubscribe MapInfo-L" in the message body.



MI-L Re: Urgent - IndividualValueThemeLegend ordering

2000-12-18 Thread Mau, Rosemary



Help!  I got 
the IndivdualValueThemeLegend working.  However, the order of my legend is 
not what I want.. I tried to change
"ht.put("labelorder", 
IndividualValueThemeLegend.ORDER_ASCENDING);" to "ht.put("labelorder", 
IndividualValueThemeLegend.ORDER_DESCENDING);"
But, the order of my 
legend remain the same. 
 
--
 
 private 
IndividualValueThemeLegend getThemeLegend(   MapJ myMap, 
String layerName, int legendNumber)   
{  IndividualValueThemeLegend iValThmLeg  
= null;    try    {
 
  Layer 
lyr = 
myMap.getLayers().elementAt(LAYER_NUMBER);  
ThemeList iValThmList = lyr.getThemeList();
 
  if (iValThmList != 
null)  
{ IndividualValueTheme 
iValThm  = 
(IndividualValueTheme)iValThmList.elementAt(0); 
Hashtable ht = new 
Hashtable(); 
ht.put("geomtype", 
IndividualValueThemeLegend.REGION_GEOMETRY); 
ht.put("labelorder", 
IndividualValueThemeLegend.ORDER_ASCENDING);
 
iValThmLeg = new IndividualValueThemeLegend(iValThm, 
ht); 
iValThmLeg.setTitle("Facilities");  
}
 
    
}    catch (Exception e)    
{  e.printStackTrace();    
}    return iValThmLeg;}
 

--
Rosemary Mau