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

GIS编程

开发平台:

C#

  1. <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Bins.aspx.cs" Inherits="Bins" Title="Custom Theme using Styling Delegate" %>
  2. <asp:Content ID="Content1" ContentPlaceHolderID="MainContent" Runat="Server">
  3.     <div>   
  4.      <asp:RadioButtonList ID="rblMapTools" runat="server" RepeatDirection="Horizontal">
  5.             <asp:ListItem Value="0">Zoom in</asp:ListItem>
  6.             <asp:ListItem Value="1">Zoom out</asp:ListItem>
  7.             <asp:ListItem Value="2" Selected="True">Pan</asp:ListItem>
  8.         </asp:RadioButtonList>
  9.         <asp:ImageButton Width="600" Height="300" ID="imgMap" runat="server" OnClick="imgMap_Click" style="border: 1px solid #000;" />
  10.     </div>
  11. Style-pseudo code:<br />
  12. <pre>
  13. If country Name="Denmark" => Green fill
  14. else if country name="United Stated" => Blue fill, red outline
  15. else if country name="China" => Red fill
  16. else if country name starts with 'S' => Yellow fill
  17. else if (geometry is polygon or multipolygon) and area is less then 30 => cyan fill
  18. else gray fill
  19. </pre>
  20. </asp:Content>