riku
2025-09-02 adc9abd145c24f2d3e7033bb738e1e8641eaf4cf
src/utils/map/line.js
@@ -9,7 +9,8 @@
  // eslint-disable-next-line no-undef
  return new AMap.Polyline({
    path: path,
    strokeStyle: 'solid',
    // strokeStyle: 'solid',
    strokeStyle: 'dashed',
    isOutline: true,
    borderWeight: 1,
    outlineColor: 'white',
@@ -21,8 +22,9 @@
}
function drawDirection(path) {
  const polyline = newPolyline(path, '#02ffea');
  map.add(polyline)
  const polyline = newPolyline(path, '#ffd82a');
  map.add(polyline);
  return polyline;
}
export default {