尝试为react-leaflet创建插件。我正在收到这个错误 我要回来了
L.Polyline.Arc(position.from,position.to,option)
这是我的组件
import React, { PropTypes } from 'react';
import { Path } from 'react-leaflet';
import L from 'leaflet'
import { Arc } from './leaflet.arc';
export default class ArcLine extends Path {
static propTypes = {
children: PropTypes.oneOfType([
PropTypes.arrayOf(PropTypes.node),
PropTypes.node,
]),
option:PropTypes.object,
position: PropTypes.object.isRequired
};
createLeafletElement (props) {
const { position, option, ...options } = props
return L.Polyline.Arc(position.from, position.to, option)
}
updateLeafletElement (fromProps, toProps) {
if (toProps.position !== fromProps.position) {
this.leafletElement._createLatLngs(line, toProps.position.from)
}
this.setStyleIfChanged(fromProps, toProps)
}
}
./ leaflet.arc是
import arc from 'arc';
/**
* Transform L.LatLng to {x, y} object
* @param {L.LatLng} latlng
* @returns {{x: {number}, y: {number}}}
* @private
*/
const _latLngToXY = latlng => ({
x: latlng.lng,
y: latlng.lat
});
/**
* Create array of L.LatLng objects from line produced by arc.js
* @param {object} line
* @param {L.LatLng} from
* @private
* @returns {Array}
*/
function _createLatLngs(line, from) {
if (line.geometries[0] && line.geometries[0].coords[0]) {
/**
* stores how many times arc is broken over 180 longitude
* @type {number}
*/
let wrap = from.lng - line.geometries[0].coords[0][0] - 360;
return line.geometries
.map(subLine => {
wrap += 360;
return subLine.coords.map(point => L.latLng([point[1], point[0] + wrap]));
})
.reduce((all, latlngs) => all.concat(latlngs));
} else {
return [];
}
}
if (!L) {
throw "Leaflet.js not included";
} else if (!arc && !arc.GreatCircle) {
throw "arc.js not included";
} else {
L.Polyline.Arc = function (from, to, options) {
from = L.latLng(from);
to = L.latLng(to);
debugger
var vertices = 10;
var arcOptions = {};
if (options) {
if (options.offset) {
arcOptions.offset = options.offset;
delete options.offset;
}
if (options.vertices) {
vertices = options.vertices;
delete options.vertices;
}
}
var generator = new arc.GreatCircle({x: from.lng, y: from.lat}, {x: to.lng, y: to.lat});
var line = generator.Arc(vertices, arcOptions);
var latLngs = [];
var wrap = 0; // counts how many times arc is broken over 180 degree
if (line.geometries[0] && line.geometries[0].coords[0])
wrap = from.lng - line.geometries[0].coords[0][0];
line.geometries.forEach(function(line) {
line.coords.forEach(function (point) {
latLngs.push(L.latLng(
[point[1], point[0] + wrap]
));
});
wrap += 360;
});
line.geometries[0].coords
return L.polyline(latLngs, options);
};
}
为什么我收到此错误,有任何建议吗?
答案 0 :(得分:0)
在这一行:
import { Arc } from './leaflet.arc'
...您正尝试从leaflet.arc
文件导入Arc变量。但是,在leaflet.arc
文件中,您似乎不会导出任何内容,只需将Arc函数附加到Leaflet的Polyline对象即可。此外,在组件中的代码中,您甚至不使用要尝试导入的Arc
变量。因此,代码失败,因为尝试从leaflet.arc
的未定义导出中读取属性。您似乎应该只导入文件而不尝试导入任何对象。
TLDR:
替换此行:
import { Arc } from './leaflet.arc'
用这个:
import './leaflet.arc'