Do it as a custom GControl.
ref: http://code.google.com/apis/maps/documentation/reference.html#GControl
example:
function Massgis_logo_control() {}
Massgis_logo_control.prototype = new GControl();
Massgis_logo_control.prototype.initialize = function () {
var contents = document.createElement("div");
contents.style.width="86px";
contents.style.height="35px";
contents.innerHTML="<A HREF=http://www.mass.gov/mgis/ TARGET=_top><IMG
SRC='massgis.gif' ALT='MassGIS' TITLE='Feature data from MassGIS'
BORDER=0></A>";
document.getElementById('map_canvas').appendChild(contents);
return contents;
}
Massgis_logo_control.prototype.printable=function(){return true};
Massgis_logo_control.prototype.selectable=function(){return false};
Massgis_logo_control.prototype.getDefaultPosition=function(){
return new GControlPosition(G_ANCHOR_BOTTOM_RIGHT,new GSize(4,15))
}
massGISLogo = new Massgis_logo_control();
On Sun, Mar 1, 2009 at 6:56 PM, [email protected] <
[email protected]> wrote:
>
> Hmmm. Yes. I actually did search, by the way.
>
> I think the separate div positioned absolute might work well.
>
> Haddn't thought of working outside the API.
>
> Thanks!
>
>
>
> On Mar 1, 3:23 pm, Rossko <[email protected]> wrote:
> > > I'm looking for the right functions for placing an image in the map
> > > window (say, upper right) that does not move with map motion, in other
> > > words is always in the upper right corner?
> >
> > This sort of thing?
> >
> > http://groups.google.com/group/Google-Maps-API/browse_thread/thread/e...
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Maps API" 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?hl=en
-~----------~----~----~----~------~----~------~--~---