- 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>
推薦閱讀
- 架構不再難(全5冊)
- PyTorch Artificial Intelligence Fundamentals
- 秒懂設計模式
- Java Web基礎與實例教程
- Nexus規模化Scrum框架
- C語言程序設計同步訓練與上機指導(第三版)
- Node.js全程實例
- Learning Vaadin 7(Second Edition)
- 西門子S7-200 SMART PLC編程從入門到實踐
- 51單片機C語言開發教程
- Java高并發核心編程(卷1):NIO、Netty、Redis、ZooKeeper
- Procedural Content Generation for C++ Game Development
- Java并發編程:核心方法與框架
- Python商務數據分析(微課版)
- Learning Android Application Testing