Theme NexT works best with JavaScript enabled

ShunNien's Blog

不積跬步,無以致千里;不積小流,無以成江海。

0%

GoogleMap Polyline 線

GoogleMap Polyline

透過 GoogleMap 操作 polyline 的顯示,不管是要顯示線,或是編輯線,繪製線等,使用 polyline 就可以操作

polyline

Google 提供了簡單的範例與詳細的參考文件,使用上也很簡易,需要注意在 HTML 中宣告使用地圖的 div 要設定明確大小(css 設定的大小)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Simple Polylines</title>
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 3,
center: {lat: 24.977179, lng: 121.312848},
mapTypeId: 'ROADMAP',
zoom: 13,
});

var bikeLaneCoordinates = [
{lat: 24.977685, lng: 121.310424},
{lat: 24.977179, lng: 121.312848},
{lat: 24.977879, lng: 121.317708},
{lat: 24.978132, lng: 121.319951}
];
var bikeLanePath = new google.maps.Polyline({
path: bikeLaneCoordinates,
geodesic: true,
strokeColor: '#FF0000',
strokeOpacity: 1.0,
strokeWeight: 2,
editable: true,
draggable: true
});

bikeLanePath.setMap(map);

// no display polyline
//bikeLanePath.setMap(null);
}
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap">
</script>
</body>
</html>

google.maps.Polyline 屬性說明

  • path : 線條的座標點集合陣列
  • strokeColor : 線條顏色
  • strokeOpacity : 線條透明度
  • strokeWeight : 線條粗細
  • editable : 可以編輯,值為 true 或是 false
  • draggable : 是否可以拖動,值為 true 或是 false

線上範例

參考資料

歡迎關注我的其它發布渠道