Wanted to know if it were possible to add a floating copyright/image
next to Google's as a custom Overlay or part of the copyright.

I'm also trying to add a copyright notice to show Copyright Info for
information displayed/loaded from our own XML for the bounds of where
the new data exists.

function onMapPreinitialize(event:Event):void {
        var opts:MapOptions = new MapOptions();
        var limitedZoomMapType:IMapType = new
MapType(MapType.PHYSICAL_MAP_TYPE.getTileLayers(),
        
MapType.PHYSICAL_MAP_TYPE.getProjection(),
                                                        "Talent Inventory",
                                                        new
MapTypeOptions({maxResolution: 7, minResolution: 4, shortName:
"TIM"}));
        opts.mapTypes = [limitedZoomMapType];
        map.setInitOptions(opts);
        var copyrightHeadway:Copyright = new Copyright('1', new
LatLngBounds(new LatLng(24,-127), new LatLng(50,-62)),
        4, 'Headway',7,true);
var copyrightCollection:CopyrightCollection = new
CopyrightCollection();
        copyrightCollection.addCopyright(copyrightHeadway);
}

The copyright isn't displaying and I was wondering what I was doing
wrong. Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API For Flash" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-api-for-flash?hl=en.

Reply via email to