chiranthsiddappa / earth-api-samples

Automatically exported from code.google.com/p/earth-api-samples
0 stars 0 forks source link

Error ERR_VERSION with latest plug-in #989

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
IMPORTANT:  Before filing a new bug report, check the existing bugs in this
issue tracker to ensure it has not already been entered.  If it has, simply
star that bug and leave an optional comment.   If you create a duplicate,
it just makes it harder to track how many people are encountering a
potential bug.

NOTE:  Please read the above IMPORTANT message before continuing.

What steps will reproduce the problem?
1. Install latest GE browser plug-in
2. Go to Google examples page, does not work, get "recently updated plugin" 
message
3. Go to my formerly functioning site with initialization callback, get error 
code "ERR_VERSION" 

What is the expected output or behavior? What do you see instead?
Expect to see GE globe and zoom to place.  Just see "need to install" message 
in IE11 even in Compatibility View, or "recently updated plugin" message in 
Chrome 35.0

Which plugin version are you using?
Does not work on this machine using 7.x, will work in Win7 Home with 7.2, will 
work on Win7 Pro using Chrome and version 6.10 - which is what loads on my site 
after I uninstall plugin (Start-GE-uninstall)

Which browsers and operating systems are affected? IE11, Chrome 35 on Win7 
Home, Win7 Pro

Please provide any additional information (code snippets/links) below.
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
    <script type="text/javascript">
        var ge;
        var currentKmlObject = null;

        //google.load("earth", "1");
        google.load("earth", "1", { "other_params": "sensor=false" });

        function addSampleUIHtml(html) {
            document.getElementById('sample-ui').innerHTML += html;
        }

        function init() {
            google.earth.createInstance('map3d', initCallback, failureCallback);

            addSampleUIHtml(
                '<style type="text/css">' +
                '  #progress-container { width: 250px; height: 10px; border: 1px solid #ccc; }' +
                '  #progress-bar { width: 0; height: 10px; }' +
                '</style>' +
                'Data Streaming Progress:' +
                '<div id="progress-container">' +
                '  <div id="progress-bar"></div>' +
                '</div><br/>'
            );

        }

        function failureCallback(errorCode) {
            alert("error: " + errorCode);
        }

google.setOnLoadCallback(init);

Original issue reported on code.google.com by hullfl...@gmail.com on 23 Jun 2014 at 7:55