轉http://hi.baidu.com/leilumail/blog/item/4910f32a170d0a28d52af127.html
1、定義地圖範圍、地圖視野、輸出大小。所要切割的地圖範圍。
int x1 = int.parse(txtx1.text); int x2 = int.parse(txtx2.text); int y1 = int.parse(txty1.text); int y2 = int.parse(txty2.text);
double startzoom = system.convert.todouble(txtstartzoom.text);
int mapwidth = int.parse(txtwidth.text); int mapheight = int.parse(txtheight.text);
2、設定地圖視野。
map.zoom = new mapinfo.geometry.distance(startzoom ,mapinfo.geometry.distanceunit.mile);
3、計算輸出的邊長對應的地理長度。
mapinfo.geometry.drect rect = map.bounds; double dx = rect.x2 - rect.x1; double dy = rect.y2 - rect.y1;
4、迴圈輸出當前視野下的地圖。
double tmpy = y1; int row = 0; while (tmpy < y2) tmpy += dy; }
5、makepic是地圖輸出函式。
PHP中操作MySQL的一些要注意的問題
mysql query insertintotablename first name,last name values first name last name 這是因為php也是以分號作為一行的結束的,額外的分號有時會讓php的語法分析器搞不明白,所以還是省略掉的好。在這種情況下,雖然省略了分號,...
PHP中操作MySQL的一些要注意的問題
對於 mysql 第一件你必須牢記的是它的每一行命令都是用分號 作為結束的,但 沒有完全絕對的事,在這兒也是一樣,當一行 mysql 被插入在 php 中時,最好把後面的分號省略掉.例如 mysql query insert into tablename first name,last name v...
BigDecimal中要注意的一些事
一 關於public bigdecimal double val bigdecimal中三個主要的建構函式 1public bigdecimal double val 將double表示形式轉換為bigdecimal 不推薦2 public bigdecimal int val 將int表示形式轉換...