I work with markers and add them like this:
markerLatLang = new google.maps.LatLng(35.6412142,139.6988337);
marker = new google.maps.Marker({position: markerLatLang, map: map});
When I go outside, all the markers are at ground level. Is there a way to place the marker at a distance of x meters above the ground or at a given height?

source
share