Popup window on google earth plugin

Source: Internet
Author: User

After google earth plugin is loaded on a web page, google earth is permanently kept at the top layer, that is, div encapsulation, setting z-index does not allow other controls to appear on the upper layer of google earth.
However, you can now use the prototype window written on the http://prototype-window.xilinus.com to achieve, on the web page, a new dialog pop-up overwrites on google earth.
The usage is as follows:
It's easy to use, just include two javascripts and one css (more if you want different skins ).
<Script type = "text/javascript" src = "/javascripts/prototype. js"> </script>
<Script type = "text/javascript" src = "/javascripts/window. js"> </script>
 
<Link href = "/stylesheets/themes/default.css" rel = "stylesheet" type = "text/css"/>
 
<! -- Add this to have a specific theme -->
<Link href = "themes/nuncio.css" rel = "stylesheet" type = "text/css"/>
To create a window, you just have to instancate a Window object with some optional parameters, set innerHTML of the window main content and call show () or showCenter () function. check out the samples tab with more sample codes.
Win = new Window ({className: "nuncio", title: "demo3", width: 200, height: 150, destroyOnClose: true, recenterAuto: false });
 
Win. getContent (). update ("Win. showCenter ();
The running result is as follows:


Author: TinyKing"

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.