Here is a google maps API V3 newbie with a pretty basic question.
Given latitude and longitude, google maps API V3 is able to retrieve the elevation with a service. But most GPS already retrieve elevation, so my app also stores the elevation. Hence I don't want to use the service, but the retrieved GPS info.
To set the latitude and longitude of a new marker, we set it with new google.maps.LatLng(x,y)
. Which is the command to set also the elevation to plot in "3D"? I mean: is there such a thing?
Thanks!