|
|
@@ -909,11 +909,11 @@ export default defineComponent({
|
|
|
const circles = coordinatesList.map((item: any) => {
|
|
|
return new AMap.Circle({
|
|
|
center: new AMap.LngLat(item[0], item[1]),
|
|
|
- radius: 8, // 半径
|
|
|
+ radius: 0.5, // 半径
|
|
|
strokeColor: color,
|
|
|
fillColor: color,
|
|
|
fillOpacity: 1,
|
|
|
- strokeWeight: 8,
|
|
|
+ strokeWeight: 6,
|
|
|
});
|
|
|
})
|
|
|
const coordinates = coordinatesList[0];
|
|
|
@@ -979,11 +979,11 @@ export default defineComponent({
|
|
|
const circles = coordinatesList.map((item: any) => {
|
|
|
return new AMap.Circle({
|
|
|
center: new AMap.LngLat(item[0], item[1]),
|
|
|
- radius: 8, // 半径
|
|
|
+ radius: 0.5, // 半径
|
|
|
strokeColor: color,
|
|
|
fillColor: color,
|
|
|
fillOpacity: 1,
|
|
|
- strokeWeight: 8,
|
|
|
+ strokeWeight: 6,
|
|
|
});
|
|
|
})
|
|
|
const coordinates = coordinatesList[0];
|