0
votes

I'm building a web application which integrate Google Earth API to Google Map V3. Here is my approach:

    var myOptions = {
      zoom: 4,
      center: new google.maps.LatLng(48.25, 11.00),
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById('map'), myOptions);
    var ge = new GoogleEarth(map);

According to the notice from Google, Google Earth API will be stop supported on December 12th, 2015.

I understand that 'ge' is a wrapped Google Earth API instance. I would like to confirm when Google Earth API stop support, the 'ge' instance in my code can continuous working or not? And if it can't, is there any solution for building a map like this https://www.google.com/maps/preview/?force=webgl (notice: your browser must support webgl to view the map).

Any help is highly appreciated. Thanks.

1

1 Answers

0
votes

Unfortunately When API is no longer supported, your 'ge' variable will no longer work.

You can look at this GitHub for WebGL layer that you can use in your Google Maps.