GIS/基本:修訂版本之間的差異
出自六年制學程
(新頁面: 分類:六年制學程/課程 ===何謂地理資訊系統=== GIS是「地理資訊系統」(Geographic Information System)的縮寫。 是指在地圖上加上數據或訊息。 ...) |
(→何謂地理資訊系統) |
||
| 第 6 行: | 第 6 行: | ||
六年制學程使用的 GIS 是以 google map 為基礎,運用 javascript 語言表現在 HTML 中。後端伺服器是使用 MySQL+PHP 。 | 六年制學程使用的 GIS 是以 google map 為基礎,運用 javascript 語言表現在 HTML 中。後端伺服器是使用 MySQL+PHP 。 | ||
| + | ===基本 DIV=== | ||
| + | <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/1.4.0/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({ | ||
| + | ……… | ||
| + | }); | ||
| + | }); | ||
| + | </script> | ||
| + | <div align=center id='map' style='height:550px; width:900px;'>六年制學程</div> | ||
| + | </pre> | ||
2014年2月21日 (五) 08:11的修訂版本
何謂地理資訊系統
GIS是「地理資訊系統」(Geographic Information System)的縮寫。
是指在地圖上加上數據或訊息。
六年制學程使用的 GIS 是以 google map 為基礎,運用 javascript 語言表現在 HTML 中。後端伺服器是使用 MySQL+PHP 。
基本 DIV
<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/1.4.0/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({
………
});
});
</script>
<div align=center id='map' style='height:550px; width:900px;'>六年制學程</div>