Hi all, I've add a custom copyright in my flex project but the color
has changed to black, do you know how to set up the white color again?
my custom TileLayer:
public function G10TileLayer(tileSize:Number) {
var copyrightCollection:CopyrightCollection = new
CopyrightCollection();
super(copyrightCollection, 14, 20);
this.tileSize = tileSize;
var llBounds:LatLngBounds = new LatLngBounds(new LatLng(-90, -180),
new LatLng(90, 180));
var copy:Copyright = new Copyright("CustomCopyright", llBounds, 0,
"PELD");
copy.
copyrightCollection.addCopyright(copy);
}
my mapControl
var tileLayers:Array = sateliteMapType.getTileLayers().concat([]);
tileLayers.push(new G10TileLayer(sateliteMapType.getTileSize()));
var campusMapType:IMapType = new MapType(tileLayers,
sateliteMapType.getProjection(), "UNIVALI");
thanks for all.
--
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.