- Kotlin Blueprints
- Ashish Belagali Hardik Trivedi Akshay Chordiya
- 12字
- 2021-07-02 21:50:16
HTML
We just have a single HTML page called index.html:
<!DOCTYPE html>
<html>
<head>
<title>Geospatial Messenger</title>
<!-- CSS -->
<link rel="stylesheet"
href="http://openlayers.org/en/v4.3.3/css/ol.css"
type="text/css">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/
bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<!-- JS -->
<script src="http://openlayers.org/en/v4.3.3/build/ol.js">
</script>
<!-- jQuery -->
<script
src="https://ajax.googleapis.com/ajax
/libs/jquery/3.2.1/jquery.min.js"></script>
<script
src="http://www.appelsiini.net/download/
jquery.jeditable.mini.js"></script>
<!-- Bootstrap -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap
/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<!-- Show the map -->
<p id="map" class="map"></p>
<!-- Message box to enter message -->
<p id="message-box"></p>
<script src="map.js"></script>
</body>
</html>
推薦閱讀
- Puppet 4 Essentials(Second Edition)
- 測試驅動開發:入門、實戰與進階
- CMDB分步構建指南
- C語言程序設計基礎與實驗指導
- 深入理解Java7:核心技術與最佳實踐
- Java程序設計:原理與范例
- 琢石成器:Windows環境下32位匯編語言程序設計
- Jupyter數據科學實戰
- 從Excel到Python:用Python輕松處理Excel數據(第2版)
- LabVIEW虛擬儀器程序設計從入門到精通(第二版)
- iPhone應用開發從入門到精通
- INSTANT Silverlight 5 Animation
- Learning Android Application Testing
- PHP+MySQL動態網站開發從入門到精通(視頻教學版)
- Python一行流:像專家一樣寫代碼