obsidiandesign

Members
  • Content count

    3
  • Joined

  • Last visited

About obsidiandesign

  • Rank
    Forum Newbie
  1. showLabel not working for individual entity

    I think I found the problem in line 2409 of MapsSourcecomfusionmapscoreMaps.as: if ((this.entity [i].displayValue != "") && (this.params.showLabels==true && this.entity [i].showLabel!=false)) Requires that the map's showLabels be set to true AND the entity's showLabel be set to true - this doesn't make much sense. It should be an OR condition, since either would be good, IMO, or check two things: 1) Map is set to true AND entity is set to true, OR 2) Entity is set to true <-- this would be the documented behavior. if ((this.entity [i].displayValue != "") && (this.params.showLabels==true || this.entity [i].showLabel!=false)) would be my first solution or if ((this.entity [i].displayValue != "") && ((this.params.showLabels==true && this.entity [i].showLabel!=false)) ||(this.entity [i].showLabel!=false)) would be my second proposal. Does this help the problem any? I can't recompile...
  2. Is it possible in FusionMaps to create the glow effect for the border of an entity? I'm looking to highlight a particular entity based on a $_GET variable, and with showLabel not working, I'm looking for alternatives. Ideally, I'd like both ideas to work, if possible. Thanks in advance!
  3. showLabel not working for individual entity

    I can confirm this. Additionally, if showLabels = 0, setting the entity to showLabel=1 does nothing. I really need this to work, and the docs say it is supposed to (Whether to show the label for this entity? This attribute over-rides the value specified for showLabels attribute for element.). Am I missing something?