Default.aspx
上传用户:sex100000
上传日期:2013-11-09
资源大小:1377k
文件大小:3k
源码类别:

GIS编程

开发平台:

C#

  1. <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" Title="SharpMap v0.9 demo examples" %>
  2. <asp:Content ID="Content1" ContentPlaceHolderID="MainContent" Runat="Server">
  3. <div style="padding: 20px;">
  4. <h3>SharpMap v0.9 demos</h3>
  5. <p>
  6. To make these demos run, make sure you have set IIS to run ASP.NET v2.0 on the web-application (default is v1.1 on most IIS installations)
  7. </p>
  8. <h4>Demos:</h4>
  9. <p>
  10. <a href="Simple.aspx">/Simple.aspx</a><br/>
  11. Creates a simple map which can be zoomed and pan'ed
  12. </p>
  13. <p>
  14. <a href="Gradient.aspx">/Gradient.aspx</a><br/>
  15. Renders the colors, pens and symbols of each country based on the population density and city population
  16. </p>
  17. <p>
  18. <a href="bins.aspx">/bins.aspx</a><br/>
  19. Renders the colors based on a custom delegate
  20. </p>
  21. <p>
  22. <a href="PieCharts.aspx">/PieCharts.aspx</a><br/>
  23. Shows how to add custom symbols to a layer (in this case pie charts) and render them on top of each country
  24. </p>
  25. <p>
  26. <a href="ajax.aspx">/ajax.aspx</a><br/>
  27. AJAX style zooming and panning
  28. </p>
  29. <p>
  30. <a href="WmsClient.aspx">/WmsClient.aspx</a><br/>
  31. Combines local data with data from an external WMS server.
  32. </p>
  33. <p>
  34. <a href="wms.aspx">/wms.aspx</a><br />
  35. Creates a WMS Server from a simple map<br/>
  36. Note: The link above will correctly throw a WmsException. See links below for some valid requests:<br/>
  37. - <a href="wms.ashx?SERVICE=WMS&REQUEST=GetCapabilities">Request capabilities</a><br/>
  38. - <a 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">Request a map</a>
  39. </p>
  40. <p>
  41. <a href="TransformTests.aspx">/TransformTests.aspx</a><br/>
  42. Performs forward and reverse coordinate transformation of points and checks the result.
  43. </p>
  44. <hr/>
  45. <p>
  46. <b>Copyright (c) 2005-2006 <a href="http://www.iter.dk">Morten Nielsen</a></b>
  47. </p>
  48. <p>Permission is hereby granted, free of charge, to any person obtaining a copy 
  49. of this software and associated documentation files (the "Software"), to deal 
  50. in the Software without restriction, including without limitation the rights 
  51. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
  52. copies of the Software, and to permit persons to whom the Software is furnished
  53. to do so, subject to the following conditions:</p>
  54. <p>The above copyright notice and this permission notice shall be included in all 
  55. copies of this Software or works derived from this Software.</p>
  56. <p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
  57. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
  58. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
  59. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
  60. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
  61. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
  62. SOFTWARE.</p>
  63. </div>
  64. </asp:Content>