Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
a3802864
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
a3802864
编写于
9月 24, 2024
作者:
Anne_LXM
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test(map.test.js):补充map测试例
上级
d39046b3
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
137 addition
and
7 deletion
+137
-7
pages/component/map/map.test.js
pages/component/map/map.test.js
+1
-1
pages/component/map/map.uvue
pages/component/map/map.uvue
+136
-6
未找到文件。
pages/component/map/map.test.js
浏览文件 @
a3802864
...
...
@@ -17,7 +17,7 @@ describe('web-map', () => {
});
it
(
'
Check MapMethods
'
,
async
()
=>
{
const
mapMethods
=
[
'
addControls
'
,
'
addMarkers
'
,
'
addMarkersLabel
'
,
'
addPolyline
'
,
'
addPolygons
'
,
'
addCircles
'
,
'
includePoint
'
]
const
mapMethods
=
[
'
addControls
'
,
'
addMarkers
'
,
'
addMarkersLabel
'
,
'
removeMarker
'
,
'
addPolyline
'
,
'
removePolyline
'
,
'
addPolygons
'
,
'
removePolygon
'
,
'
addCircles
'
,
'
removeCircle
'
,
'
includePoint
'
]
for
(
var
i
=
0
;
i
<
mapMethods
.
length
;
i
++
)
{
await
page
.
callMethod
(
mapMethods
[
i
])
await
page
.
waitFor
(
500
);
...
...
pages/component/map/map.uvue
浏览文件 @
a3802864
...
...
@@ -16,12 +16,17 @@
@confirm="confirm_scale_input"></input-data>
<boolean-data :defaultValue="showLocation" title="开启显示带有方向的当前定位点" @change="change_show_location"></boolean-data>
<button class="button" @click="addControls">控件</button>
<button class="button" @click="addMarkers">标记点</button>
<button class="button" @click="addMarkers">
添加
标记点</button>
<button class="button" @click="addMarkersLabel">为标记点旁边增加标签</button>
<button class="button" @click="addPolyline">路线</button>
<button class="button" @click="addPolygons">多边形</button>
<button class="button" @click="addCircles">圆</button>
<button class="button" @click="deleteMarker">移除ID为4的标记点和标签</button>
<button class="button" @click="addPolyline">添加路线</button>
<button class="button" @click="removePolyline">移除一条路线</button>
<button class="button" @click="addPolygons">添加多边形</button>
<button class="button" @click="removePolygon">移除一个多边形</button>
<button class="button" @click="addCircles">添加圆</button>
<button class="button" @click="removeCircle">移除一个圆</button>
<button class="button" @click="includePoint">缩放视野以包含所有给定的坐标点</button>
<view class="uni-title">
<text class="uni-title-text">方法示例</text>
...
...
@@ -188,7 +193,82 @@
padding: 5,
display: 'ALWAYS'
}
}
},
{
id: 2,
latitude: 39.894793,
longitude: 116.321592,
title: '北京西站',
zIndex: '1',
iconPath: '../../../static/location.png',
width: 40,
height: 40,
anchor: {
x: 0.5,
y: 1
},
callout: {
content: '北京西站',
color: '#ffffff',
fontSize: 12,
borderRadius: 10,
borderWidth: 2,
borderColor: '#333300',
bgColor: '#ff5500',
padding: 5,
display: 'ALWAYS'
}
},
{
id: 3,
latitude: 39.902344,
longitude: 116.484822,
title: '北京东站',
zIndex: '1',
iconPath: '../../../static/location.png',
width: 20,
height: 20,
anchor: {
x: 0.5,
y: 1
},
callout: {
content: '北京东站',
color: '#ffffff',
fontSize: 12,
borderRadius: 10,
borderWidth: 2,
borderColor: '#333300',
bgColor: '#ff5500',
padding: 5,
display: 'ALWAYS'
}
},
{
id: 4,
latitude: 39.865011,
longitude: 116.379007,
title: '北京南站',
zIndex: '1',
iconPath: '../../../static/location.png',
width: 40,
height: 40,
anchor: {
x: 0.5,
y: 1
},
callout: {
content: '北京南站',
color: '#ffffff',
fontSize: 12,
borderRadius: 10,
borderWidth: 2,
borderColor: '#333300',
bgColor: '#00aa00',
padding: 5,
display: 'ALWAYS'
}
},
];
...
...
@@ -390,9 +470,23 @@
const markers = reactive([] as Markers[]);
const addMarkers = () => {
scale.value = 11
markers.push(...testMarkers);
};
const removeMarker = () => {
const index = markers.findIndex(marker => marker.id === 4);
if (index !== -1) {
delete markers[index].label;
markers.splice(index, 1);
}else{
uni.showToast({
title: '未找到该标记点',
icon: 'none'
});
}
};
const addMarkersLabel = () => {
markers.forEach((marker, index) => {
marker.label = {
...
...
@@ -413,9 +507,14 @@
const polyline = ref([] as Polyline[]);
const addPolyline = () => {
scale.value = 1
2
;
scale.value = 1
1
;
polyline.value = testPolyline;
};
const removePolyline = () => {
if (polyline.value.length > 1) {
polyline.value.splice(0, 1);
}
};
const polygons = ref([] as Polygons[]);
...
...
@@ -423,6 +522,11 @@
scale.value = 10;
polygons.value = testPolygons;
};
const removePolygon = () => {
if (polygons.value.length > 1) {
polygons.value.splice(0, 1);
}
};
const circles = ref([] as Circles[]);
...
...
@@ -430,6 +534,12 @@
scale.value = 10;
circles.value = testCircles;
};
const removeCircle = () => {
if (circles.value.length > 1) {
circles.value.splice(0, 1);
}
};
const showCompass = ref(true);
const enable3D = ref(true);
...
...
@@ -528,6 +638,22 @@
console.log(error)
}
});
map.value.translateMarker({
markerId: 2,
destination: {
latitude: 39.902344,
longitude: 116.484822,
},
autoRotate: true,
rotate: 0,
duration: 2000,
success: ret => {
console.log('handleTranslateMarker',JSON.stringify(ret));
},
fail: error => {
console.log(error)
}
});
}
};
...
...
@@ -623,9 +749,13 @@
addControls,
addMarkers,
addMarkersLabel,
removeMarker,
addPolyline,
removePolyline,
addPolygons,
removePolygon,
addCircles,
removeCircle,
includePoint,
handleGetCenterLocation,
handleGetRegion,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录