Preamble
I use Angular Google Maps to indicate the location of several buildings in campus of a university. My initialization is as follows:
$scope.map = {
control: {},
center:
{
latitude: $scope.Item.Latitude,
longitude: $scope.Item.Longitude
},
zoom: 16,
options: {
streetViewControl: true,
maxZoom: 20,
minZoom: 8,
mapTypeId: google.maps.MapTypeId.HYBRID
},
showTraffic: true,
showBicycling: true,
events: {
blacklist: ['drag', 'dragend', 'dragstart', 'center_changed']
}
};
This procedure is working, and allows visualization as follows:
However,IrecentlyrealizedthatGoogleMapshas3Dinformationoftheareacovered,andIwouldlikethemaptoberenderedasfollows:
Question
Is it possible, via Google Maps, to configure the initialization of my map in order to display it in the way indicated?
Bonus question
... Would it be possible to rotate the "camera" programmatically by focusing on the position indicated in order to make the building turn?
Reference link for the indicated area: link
Disclaimer : This is a cross-post from the original OS, 3D map visualization in Angular Google Maps