Brannon King wrote:
> David Huynh wrote:
>> Brannon King wrote:
>>   
>>> How does one change the bubble (aka, balloon, aka the thing that pops up
>>> when you click on the map marker) size when using the Exhibit
>>> map-extension.js? Or, as an alternate plan, how would one restrict which
>>> items get listed inside the bubble?
>>>   
>>>     
>> Is this the case where several items fall onto the same spot on the map? 
>> There is no way to restrict the height right now, but that would be a 
>> good thing for us to add... Stay tuned.
> Um, I don't think this has anything to do with multiple items on the 
> map at the same location. The popup-bubble-ballons in the timeline 
> have scrollbars that allow a person to scroll through the list of 
> individual fields for an item. This keeps the items from extending 
> outside the popup. We need a similar feature for the maps.
Oh I see. In that case, add a CSS class to your lens template

    <div ex:role="lens" class="something-here"...>
       ...
    </div>

and then add a CSS rule to restrict its height

    div.something-here {
       height: 200px;
       overflow: auto;
    }

David
_______________________________________________
General mailing list
[email protected]
http://simile.mit.edu/mailman/listinfo/general

Reply via email to