六年制學程/01/2014.02.24:修訂版本之間的差異
出自六年制學程
(新頁面: 分類:六年制學程/01 ==流程== *檢查作業。 *解釋作業答案。 *進一步練習。 *GIS 練習。 *#烏克蘭 *#基輔 *地球的主要板塊 *#太平洋板塊 *#菲...) |
(→流程) |
||
| 第 11 行: | 第 11 行: | ||
*#太平洋板塊 | *#太平洋板塊 | ||
*#菲律賓板塊 | *#菲律賓板塊 | ||
| + | ==GIS完整練習== | ||
| + | <pre> | ||
| + | <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> | ||
| + | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> | ||
| + | <script type="text/javascript" src="http://www.pittss.lv/jquery/gomap/js/jquery.gomap-1.3.2.min.js"></script> | ||
| + | <script> | ||
| + | $(function(){ | ||
| + | $("#map").goMap({ | ||
| + | zoom:17, | ||
| + | address:'新北市板橋區英士路58巷19號', | ||
| + | maptype:'ROADMAP', | ||
| + | overlays: [ | ||
| + | {type: 'polyline', | ||
| + | color: 'red', | ||
| + | coords: [{ | ||
| + | latitude:25.026090, | ||
| + | longitude:121.459073 | ||
| + | },{ | ||
| + | latitude:25.023844, | ||
| + | longitude: 121.460468 | ||
| + | },{ | ||
| + | latitude:25.025030, | ||
| + | longitude:121.462818 | ||
| + | }] | ||
| + | }, | ||
| + | {type: 'circle', | ||
| + | color: '#FFFF00', | ||
| + | fillColor: '#ddd', | ||
| + | latitude:25.024194, | ||
| + | longitude:121.458891, | ||
| + | radius: 20 | ||
| + | }, | ||
| + | {type: 'polygon', | ||
| + | color: '#00CC00', | ||
| + | fillColor: '#00CC00', | ||
| + | coords: [{ | ||
| + | latitude:25.025331, | ||
| + | longitude:121.457593 | ||
| + | },{ | ||
| + | latitude:25.026051, | ||
| + | longitude:121.458987 | ||
| + | },{ | ||
| + | latitude:25.024330, | ||
| + | longitude:121.460060 | ||
| + | },{ | ||
| + | latitude:25.023601, | ||
| + | longitude:121.458644 | ||
| + | } | ||
| + | ] | ||
| + | }, | ||
| + | {type: 'rectangle', | ||
| + | color: 'blue', | ||
| + | fillColor: '#aaa', | ||
| + | ne: { | ||
| + | latitude:25.027198, | ||
| + | longitude:121.464620 | ||
| + | }, | ||
| + | sw: { | ||
| + | latitude:25.023387, | ||
| + | longitude:121.456252 | ||
| + | } | ||
| + | } | ||
| + | ], | ||
| + | markers:[ | ||
| + | { | ||
| + | address:'台灣新北市板橋區新海路181號', | ||
| + | html:{content:"<a href='http://jendo.org/wiki1211/' target=_blank>六年制學程</a>",popup:false} | ||
| + | }, | ||
| + | { | ||
| + | html:{content:'四維公園',popup:false}, | ||
| + | latitude:25.025523, | ||
| + | longitude:121.462608 | ||
| + | }, | ||
| + | ] | ||
| + | }); | ||
| + | }); | ||
| + | </script> | ||
| + | <div align=center id="map" style="height:550px; width:900px;">新埔國中</div> | ||
| + | </pre> | ||
2014年2月24日 (一) 08:29的修訂版本
流程
- 檢查作業。
- 解釋作業答案。
- 進一步練習。
- GIS 練習。
- 烏克蘭
- 基輔
- 地球的主要板塊
- 太平洋板塊
- 菲律賓板塊
GIS完整練習
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script type="text/javascript" src="http://www.pittss.lv/jquery/gomap/js/jquery.gomap-1.3.2.min.js"></script>
<script>
$(function(){
$("#map").goMap({
zoom:17,
address:'新北市板橋區英士路58巷19號',
maptype:'ROADMAP',
overlays: [
{type: 'polyline',
color: 'red',
coords: [{
latitude:25.026090,
longitude:121.459073
},{
latitude:25.023844,
longitude: 121.460468
},{
latitude:25.025030,
longitude:121.462818
}]
},
{type: 'circle',
color: '#FFFF00',
fillColor: '#ddd',
latitude:25.024194,
longitude:121.458891,
radius: 20
},
{type: 'polygon',
color: '#00CC00',
fillColor: '#00CC00',
coords: [{
latitude:25.025331,
longitude:121.457593
},{
latitude:25.026051,
longitude:121.458987
},{
latitude:25.024330,
longitude:121.460060
},{
latitude:25.023601,
longitude:121.458644
}
]
},
{type: 'rectangle',
color: 'blue',
fillColor: '#aaa',
ne: {
latitude:25.027198,
longitude:121.464620
},
sw: {
latitude:25.023387,
longitude:121.456252
}
}
],
markers:[
{
address:'台灣新北市板橋區新海路181號',
html:{content:"<a href='http://jendo.org/wiki1211/' target=_blank>六年制學程</a>",popup:false}
},
{
html:{content:'四維公園',popup:false},
latitude:25.025523,
longitude:121.462608
},
]
});
});
</script>
<div align=center id="map" style="height:550px; width:900px;">新埔國中</div>