Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
21
rated 0 times [  26] [ 5]  / answers: 1 / hits: 23623  / 6 Years ago, sun, october 14, 2018, 12:00:00

Short question:



Is there a way to represent the 3D earth globe with google maps web API?






On google maps, we can now visualize the earth as a globe in 3D.



Here is an example:



consult






I am developing an HTML project with google maps API and I would like to use this earth representation on my website.



However, I do not find any topic about this subject.



Is there a way to represent the 3D earth globe with google maps API as on the google maps web site3D?






Here is an example of my map (it is of course an extract of my code to clarify the question):





var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 8
});
}

      /* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}

    <meta name=viewport content=initial-scale=1.0>
<meta charset=utf-8>
<div id=map></div>

<script src=https://maps.googleapis.com/maps/api/js?callback=initMap
async defer></script>





Here is a picture of my map on my website:



enter



This map only represents the earth as a planisphere. How may I have the same result as on the google maps web site?






Notice:
I found this post in twitter witch introduces the feature on the google maps web site.


More From » google-maps

 Answers
12

I believe this feature is not available in the API yet.



I can see a feature request in Google issue tracker that looks like your question:



https://issuetracker.google.com/issues/111576221



I would suggest staring the feature request to add your vote and subscribe to further notifications. Hopefully one day Google will implement this feature in the API.


[#53325] Monday, October 8, 2018, 6 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
billt

Total Points: 608
Total Questions: 100
Total Answers: 87

Location: Cape Verde
Member since Fri, Nov 27, 2020
4 Years ago
billt questions
Fri, Sep 10, 21, 00:00, 3 Years ago
Tue, Aug 18, 20, 00:00, 4 Years ago
Sat, Apr 6, 19, 00:00, 5 Years ago
;