hello,
how to set satellite view by default instead of map view in google map in asp.net application.
I post my coding which works correctly. But it shows map view by default. so, how to set satellite view by default instead of map view in google map?
aspx :
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0; padding: 0 }
#map_canvas { height: 100% }
</style>
<script type="text/javascript" src = "https://maps.googleapis.com/maps/api/js?&sensor=false">
</script>
<script type="text/javascript">
function initialize() {
var longu = document.getElementById('<%=hdnlatlon.ClientID %>').value;
var longi = document.getElementById('<%=hdnlog.ClientID % ...
Go to the complete details ...