Hi Barry,

No, we don't support that yet, although you can potentially hack Exhibit 
to do that. Not sure how comfortable you are with Javascript, but take a 
look at this code

    
http://static.simile.mit.edu/exhibit/extensions-2.0/map/scripts/map-view.js

The method responsible for iterating over the data and adding the markers is

    Exhibit.MapView.prototype._reconstruct

Quite a bit of its complicatedness has to deal with detecting items that 
fall onto the same locations (so that we know to display the count 
inside the marker). I presume you don't care about that for the 
polygons. I'd recommend creating your own map view, using that code as a 
starting point.

    <script>
       var MyMapView = function(containerElmt, uiContext) {
          ...
       };
       MyMapView.createFromDOM = function(configElmt, containerElmt, 
uiContext) {
          ...
       };
       ...
    </script>
    ...
    <div ex:role="view" ex:viewClass="MyMapView"...></div>

Let us know how that works out for you.

David


[EMAIL PROTECTED] wrote:
> Does anyone know how I would be able to show highlighted areas (shaded 
> polygons) on a Google map within an Exhibit project in addition to the 
> individual points? I am able to create these using myMaps on Google which 
> then generates a KML file along with all of the polygon's lat/longs.
>
> Thanks,
> Barry
> _______________________________________________
> General mailing list
> [email protected]
> http://simile.mit.edu/mailman/listinfo/general
>   

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

Reply via email to