- Thiết kế polygon hình tứ giác theo thao tác click chuột của người dùng: -
-diff --git a/pages/ex-four.html b/pages/ex-four.html index 0d159df..ac3c5cb 100644 --- a/pages/ex-four.html +++ b/pages/ex-four.html @@ -4,7 +4,11 @@
- Thiết kế polygon hình tứ giác theo thao tác click chuột của người dùng: -
-
+ MORE
+
+
+
+
+
+ Thiết kế polygon hình tứ giác theo thao tác click chuột của người
+ dùng:
+
+
+
+
var polygonPoints = []
var polygon;
var marker;
map.on('click', (e) => {
- // kiểm tra nếu độ dài mảng polygonPoints thì vẽ polygon
- if (polygonPoints.length == 4) {
- polygon = L.polygon(polygonPoints, {color: 'red'}).addTo(map);
- polygonPoints = []
- } else {
- polygonPoints.push(e.latlng)
- marker = L.marker(e.latlng).addTo(map)
- }
+// kiểm tra nếu độ dài mảng polygonPoints thì vẽ polygon
+if (polygonPoints.length == 4) {
+ polygon = L.polygon(polygonPoints, {color: 'red'}).addTo(map);
+ polygonPoints = []
+} else {
+ polygonPoints.push(e.latlng)
+ marker = L.marker(e.latlng).addTo(map)
+}
})
-
-
- Bài trước
+
-
+ Bài trước