How to get a custom copyright to display?

I am trying code below, but get no custom copyright

  public function ThreeZLayer(
           tileSize:Number,
           url:String,
           minResolution:Number = 14,
           maxResolution:Number = 14,
           alpha:Number=Alpha.OPAQUE) {

    var copyrightCollection:CopyrightCollection = new
CopyrightCollection();
    super(copyrightCollection, minResolution, maxResolution, alpha);
    this.tileSize = tileSize;
    this.url = url;

    // Add a custom copyright that will apply to the entire map layer.
    copyrightCollection.addCopyright(
        new Copyright("ThreeZTileProvider",
                      new LatLngBounds(new LatLng(-180, 90),
                                       new LatLng(180, -90)),
                      0,
                      "©2008 Informing Design"));



--~--~---------~--~----~------------~-------~--~----~
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