forked from SharpMap/SharpMap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMasterPage.master
More file actions
56 lines (53 loc) · 2.02 KB
/
MasterPage.master
File metadata and controls
56 lines (53 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<!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>SharpMap Demo Website</title>
<link rel="stylesheet" type="text/css" href="~/styles.css" media="all" />
</head>
<body>
<form id="form1" runat="server">
<div>
<table style="width:100%;">
<tr>
<td colspan="2">
<h2><asp:Literal runat="server" id="litHeadline" /></h2>
</td>
</tr>
<tr>
<td style="width: 140px;" valign="top">
<div id="leftcont">
<div id="leftnav">
<h2>Examples</h2>
<a href="Simple.aspx">Simple</a>
<a href="SimpleMsSqlSpatial.aspx">Simple - MsSqlSpatial</a>
<a href="Bins.aspx">Styling delegate</a>
<a href="Gradient.aspx">Gradient</a>
<a href="PieCharts.aspx">Pie Charts</a>
<a href="Ajax.aspx">AJAX</a>
<a href="GeometryFeature.aspx">Geometry Feature Provider</a>
<h2>Extensions</h2>
<a href="MapInfo.aspx">MapInfo</a>
<a href="Gdal.aspx">Gdal</a>
<a href="SimplePostGis.aspx">Simple - PostGis</a>
<h2>WMS</h2>
<a href="wmsclient.aspx">WMS Client</a>
<a target="_blank" href="wms.ashx?SERVICE=WMS&REQUEST=GetCapabilities">WMS Server Capabilites</a>
<a target="_blank" href="wms.ashx?REQUEST=GetMap&Layers=Countries,Rivers,Country labels&STYLES=&CRS=EPSG:4326&BBOX=-180,-90,180,90&WIDTH=600&HEIGHT=300&FORMAT=image/png&VERSION=1.3.0">WMS Server Map</a>
<h2>Transformation</h2>
<a href="Transformation.aspx">On-the-fly transformation</a>
<a href="TransformTests.aspx">Transformation Test</a>
<h2>Utilities</h2>
<a href="Provider.aspx">List of available data providers</a>
</div></div>
</td>
<td>
<asp:contentplaceholder id="MainContent" runat="server">
</asp:contentplaceholder>
</td>
</tr>
</table>
</div>
</form>
</body>
</html>