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

GIS编程

开发平台:

C#

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. public partial class Ajax : System.Web.UI.Page
  12. {
  13. protected void Page_Load(object sender, EventArgs e)
  14. {
  15. ajaxMap.Map = MapHelper.InitializeMap(new System.Drawing.Size(10, 10));
  16. if (!Page.IsPostBack && !Page.IsCallback)
  17. {
  18. //Set up the map. We use the method in the App_Code folder for initializing the map
  19. ajaxMap.Map.Center = new SharpMap.Geometries.Point(0, 20);
  20. ajaxMap.FadeSpeed = 10;
  21. ajaxMap.ZoomSpeed = 10;
  22. ajaxMap.Map.Zoom = 360;
  23. }
  24. ajaxMap.ResponseFormat = "maphandler.ashx?MAP=SimpleWorld&Width=[WIDTH]&Height=[HEIGHT]&Zoom=[ZOOM]&X=[X]&Y=[Y]";
  25. }
  26. }