Click here to Skip to main content
15,897,718 members
Articles / Hosted Services / Azure

GPS Runner Maps: My First Windows Azure Application

Rate me:
Please Sign up or sign in to vote.
4.90/5 (12 votes)
20 Dec 2009CPOL3 min read 55.3K   3.1K   63  
It is "cloud" Web application to display GPS tracks on Google or Bing maps
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Google Maps User Control for ASP.Net version 1.0</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <h2>Google Maps User Control for ASP.Net</h2>
        <h3>Samples</h3>
        <ul>
        <li><a href="SimpleMapWithNoBubble.aspx">Simple Google Map</a></li>
        <li><a href="mapWithClickablePushpins.aspx">Google Map with clickable pushpins</a></li>
        <li><a href="mapwithcustomicons.aspx">Google Map with customized icons</a></li>
        <li><a href="MapWithMovingPushpins.aspx">Google Map with moving pushpins</a></li>
        <li><a href="MapWithAutoMovingPushpins.aspx">Google Map with automatically moving pushpins</a></li>
        <li><a href="MapWithAutoChangingPushpins.aspx">Google Map with automatically changing pushpins</a></li>
        <li><a href="ControlPerformanceTest.aspx">Google Map Control performance test</a></li>
        <li><a href="MapWithPolylines.aspx">Google Map with Polylines</a></li>
        <li><a href="MapWithPolygons.aspx">Google Map with Polygons</a></li>
        <li><a href="MapWithTrafficOverlay.aspx">Google Map with Traffic Overlays</a></li>
        <li><a href="MapWithRecenter.aspx">Re-center map example</a></li>
        <li><a href="MapWithToolTipOnPushpins.aspx">Google Map with tooltip on pushpins</a></li>
        <li><a href="MapWithDraggableIcons.aspx">Google Map with Draggable pushpins</a></li>
        <li><a href="MapWithGeocoding.aspx">Google Map with Geocoding</a></li>
        <li><a href="MapWithSatelliteView.aspx">Map with Satellite View</a></li>
        <li><a href="MapWithAutoMovingPushpinsAndDynamicBoundaries.aspx">Google Map with automatically moving pushpins and dynamic boundaries</a></li>
        </ul>
        </div>
    </form>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer Forthnet
Greece Greece
Software developer and Microsoft Trainer, Athens, Greece (MCT, MCSD.net, MCSE 2003, MCDBA 2000,MCTS, MCITP, MCIPD).

Comments and Discussions